diff options
author | jeresig <jeresig@gmail.com> | 2010-01-11 16:08:39 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-01-11 16:08:39 -0500 |
commit | cb4880ee8353b5fc1a8a509cb0caf3a82818da0a (patch) | |
tree | 4482331baf171900b7b93ffb2b90f43d6f562ec3 | |
parent | 36a98b95c2f3f7617ddf51beec7515acf67d98ba (diff) | |
download | jquery-cb4880ee8353b5fc1a8a509cb0caf3a82818da0a.tar.gz jquery-cb4880ee8353b5fc1a8a509cb0caf3a82818da0a.zip |
Made some additional tests for #5785.
-rw-r--r-- | test/unit/manipulation.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 52becfefb..046d363eb 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -626,7 +626,7 @@ test("insertAfter(String|Element|Array<Element>|jQuery)", function() { }); var testReplaceWith = function(val) { - expect(16); + expect(17); jQuery('#yahoo').replaceWith(val( '<b id="replace">buga</b>' )); ok( jQuery("#replace")[0], 'Replace element with string' ); ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' ); @@ -651,9 +651,13 @@ var testReplaceWith = function(val) { reset(); var tmp = jQuery("<div/>").appendTo("body").click(function(){ ok(true, "Newly bound click run." ); }); var y = jQuery('#yahoo').click(function(){ ok(true, "Previously bound click run." ); }); + var child = y.append("<b>test</b>").find("b").click(function(){ ok(true, "Child bound click run." ); return false; }); + y.replaceWith( tmp ); + tmp.click(); y.click(); + child.click(); reset(); |