X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=bb78bdd2b813b0da53daec3051bde859a5a7fb69;hb=2c8af19a06c49dc2121d968c2609087b0a54e894;hp=a0239a405b66dee384fc3f72d4b8e3c08cd0f488;hpb=23d600c66d8e1f7298dcb46eedba862279cd251d;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index a0239a4..bb78bdd 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -631,7 +631,7 @@ test("insertAfter(String|Element|Array<Element>|jQuery)", function() { }); var testReplaceWith = function(val) { - expect(16); + expect(15); jQuery('#yahoo').replaceWith(val( 'buga' )); ok( jQuery("#replace")[0], 'Replace element with string' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' ); @@ -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 ); @@ -665,15 +664,22 @@ var testReplaceWith = function(val) { y.click(); // Shouldn't be run child.click(); // Shouldn't be run + tmp.remove(); + y.remove(); + child.remove(); + 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 ); child2.click(); + y.remove(); + child2.remove(); + reset(); var set = jQuery("
").replaceWith(val("test")); @@ -681,9 +687,10 @@ var testReplaceWith = function(val) { equals( set.length, 1, "Replace the disconnected node." ); var $div = jQuery("
").appendTo("body"); - $div.replaceWith("
"); + // TODO: Work on jQuery(...) inline script execution + //$div.replaceWith("
"); equals(jQuery('.replacewith').length, 1, 'Check number of elements in page.'); jQuery('.replacewith').remove(); }