X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=e1d3dbf6add31f9a8ea8d869edad6bfefe1491b5;hb=43fbe3b33aeaa73c151ddb59632c85bc7f8a87b9;hp=87af324d2a07bbe70e82948d213a50ab33c69179;hpb=ea8b1584b1905bbb414dc2e3cf562c6f3904bd97;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 87af324..e1d3dbf 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -984,6 +984,11 @@ test("html(Function) with incoming value", function() { equals( val, old[i], "Make sure the incoming value is correct." ); return "bold"; }); + + // Handle the case where no comment is in the document + if ( j.length === 2 ) { + equals( null, null, "Make sure the incoming value is correct." ); + } j.find('b').removeData(); equals( j.html().replace(/ xmlns="[^"]+"/g, "").toLowerCase(), "bold", "Check node,textnode,comment with html()" ); @@ -1038,7 +1043,8 @@ var testRemove = function(method) { equals( jQuery("#ap").children().length, 0, "Check multi-filtered remove" ); // using contents will get comments regular, text, and comment nodes - equals( jQuery("#nonnodes").contents().length, 3, "Check node,textnode,comment remove works" ); + // Handle the case where no comment is in the document + ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment remove works" ); jQuery("#nonnodes").contents()[method](); equals( jQuery("#nonnodes").contents().length, 0, "Check node,textnode,comment remove works" );