]> source.dussan.org Git - jquery.git/commitdiff
Adjust html parsing in event tests to use jQuery.parseHTML explicitly.
authorTimmy Willison <timmywillisn@gmail.com>
Thu, 13 Dec 2012 20:52:59 +0000 (15:52 -0500)
committerTimmy Willison <timmywillisn@gmail.com>
Thu, 13 Dec 2012 20:52:59 +0000 (15:52 -0500)
test/unit/event.js

index b5ad26d859dfd9445e87c0d882374757fcd41973..50328be4030f6db8be168cb1871bc123270f200c 100644 (file)
@@ -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