From: Timmy Willison Date: Thu, 13 Dec 2012 20:52:59 +0000 (-0500) Subject: Adjust html parsing in event tests to use jQuery.parseHTML explicitly. X-Git-Tag: 1.9.0b1~18 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d61c5238e57cf252faa2d999465bd69afc6c038;p=jquery.git Adjust html parsing in event tests to use jQuery.parseHTML explicitly. --- diff --git a/test/unit/event.js b/test/unit/event.js index b5ad26d85..50328be40 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -1052,7 +1052,7 @@ test("trigger(type, [data], [fn])", function() { form.remove(); }); -test( "submit event bubbles on copied forms (#11649)", function(){ +test( "submit event bubbles on copied forms (#11649)", function() { expect( 3 ); var $formByClone, $formByHTML, @@ -1076,7 +1076,7 @@ test( "submit event bubbles on copied forms (#11649)", function(){ // Copy the form via .clone() and .html() $formByClone = $testForm.clone( true, true ).removeAttr("id"); - $formByHTML = jQuery( $fixture.html() ).filter("#testForm").removeAttr("id"); + $formByHTML = jQuery( jQuery.parseHTML($fixture.html()) ).filter("#testForm").removeAttr("id"); $wrapperDiv.append( $formByClone, $formByHTML ); // Check submit bubbling on the copied forms @@ -1109,7 +1109,7 @@ test( "change event bubbles on copied forms (#11796)", function(){ // Copy the form via .clone() and .html() $formByClone = $form.clone( true, true ).removeAttr("id"); - $formByHTML = jQuery( $fixture.html() ).filter("#form").removeAttr("id"); + $formByHTML = jQuery( jQuery.parseHTML($fixture.html()) ).filter("#form").removeAttr("id"); $wrapperDiv.append( $formByClone, $formByHTML ); // Check change bubbling on the copied forms