X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fcore.js;h=12b405644ac4dc2c6b5ce8b4d6575d214e13d664;hb=da33a981c6fb18a195377d55a6d243e2de887f45;hp=533fcef2d0637529ba835ec70a3f55417e0ba3eb;hpb=b3ec8edddd9261eef490f8317144e9c68c888819;p=jquery.git diff --git a/test/unit/core.js b/test/unit/core.js index 533fcef..12b4056 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -864,7 +864,7 @@ test("find(String)", function() { }); test("clone()", function() { - expect(4); + expect(6); ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' ); var clone = $('#yahoo').clone(); ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' ); @@ -872,6 +872,16 @@ test("clone()", function() { // using contents will get comments regular, text, and comment nodes var cl = $("#nonnodes").contents().clone(); ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" ); + + stop(); + $.get("data/dashboard.xml", function (xml) { + var root = $(xml.documentElement).clone(); + $("tab:first", xml).text("origval"); + $("tab:first", root).text("cloneval"); + equals($("tab:first", xml).text(), "origval", "Check original XML node was correctly set"); + equals($("tab:first", root).text(), "cloneval", "Check cloned XML node was correctly set"); + start(); + }); }); test("is(String)", function() { @@ -1022,7 +1032,8 @@ test("html(String)", function() { $("#main").html('foo
'); - $("#main").html("