X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=f678db07554afbc035458532a9a63bd26706ba98;hb=31252b1e4752d70eb895a659b41a85850ed727b4;hp=a0239a405b66dee384fc3f72d4b8e3c08cd0f488;hpb=44e6beb10304789044de2c5a58f5bb82e8321636;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index a0239a4..f678db0 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -655,9 +655,8 @@ var testReplaceWith = function(val) { reset(); var tmp = jQuery("
").appendTo("body").click(function(){ ok(true, "Newly bound click run." ); }); - var y = jQuery('#yahoo').click(function(){ ok(true, "Previously bound click run." ); }); + var y = jQuery('
').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); }); var child = y.append("test").find("b").click(function(){ ok(true, "Child bound click run." ); return false; }); - var child2 = y.append("test").find("u").click(function(){ ok(true, "Child 2 bound click run." ); return false; }); y.replaceWith( tmp ); @@ -667,7 +666,7 @@ var testReplaceWith = function(val) { reset(); - y = jQuery('#yahoo').click(function(){ ok(true, "Previously bound click run." ); }); + y = jQuery('
').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); }); var child2 = y.append("test").find("u").click(function(){ ok(true, "Child 2 bound click run." ); return false; }); y.replaceWith( child2 );