X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fjquery%2FcoreTest.js;h=25cb69b307a378c287cfc226433865639bd749b3;hb=a4a6dfa6bd374904360c4e14c69319fe6ea3e180;hp=497d30dbd4392412591f627fc0770ace6a0ebd7a;hpb=1878aa96446aae7aa65ccbbd8a1dfa90301a043a;p=jquery.git diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index 497d30d..25cb69b 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -74,7 +74,7 @@ test("index(Object)", function() { }); test("attr(String)", function() { - expect(14); + expect(15); ok( $('#text1').attr('value') == "Test", 'Check for value attribute' ); ok( $('#text1').attr('type') == "text", 'Check for type attribute' ); ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' ); @@ -87,7 +87,10 @@ test("attr(String)", function() { ok( $('#name').attr('name') == "name", 'Check for name attribute' ); ok( $('#text1').attr('name') == "action", 'Check for name attribute' ); ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' ); - //equals( "#2", $('#anchor2').attr('href'), 'Check for non-absolute href (an anchor)' ); This fails in IE because the _config.fixture is reloaded using innerHTML + + $('').attr('href', '#5').appendTo('#main'); // using innerHTML in IE causes href attribute to be serialized to the full path + ok( $('#tAnchor5').attr('href') == "#5", 'Check for non-absolute href (an anchor)' ); + stop(); $.get("data/dashboard.xml", function(xml) { ok( $("locations", xml).attr("class") == "foo", "Check class attribute in XML document" ); @@ -242,7 +245,7 @@ test("append(String|Element|Array<Element>|jQuery)", function() { reset(); $("#sap").append(document.getElementById('form')); - ok( $("#sap>form").size() == 1, "Check for appending a form" ); + ok( $("#sap>form").size() == 1, "Check for appending a form" ); // Bug #910 });