From 9e5f49fde33a4a74fce0c4dd0582d52399a08fcd Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Thu, 29 May 2014 21:45:59 +0400 Subject: [PATCH] Selector: Fix test iframe submission for firefox Ref jquery/sizzle@20fbadb0870bd30e0e66c68891f121c0450374c4 (Cherry-picked from efc4f8d7814a8c44bd5b4d924d237a04263e1a85) --- test/unit/selector.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/test/unit/selector.js b/test/unit/selector.js index 57e104894..e963187ff 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -474,10 +474,10 @@ testIframe("selector/sizzle_cache", "Sizzle cache collides with multiple Sizzles equal( jQuery(".evil a").length, 0, "Select nothing again with second sizzle" ); }); -asyncTest( "Iframe dispatch should not affect Sizzle, see #13936", 1, function() { +asyncTest( "Iframe dispatch should not affect jQuery (#13936)", 1, function() { var loaded = false, thrown = false, - iframe = document.getElementById("iframe"), + iframe = document.getElementById( "iframe" ), iframeDoc = iframe.contentDocument || iframe.contentWindow.document; jQuery( iframe ).on( "load", function() { @@ -485,17 +485,13 @@ asyncTest( "Iframe dispatch should not affect Sizzle, see #13936", 1, function() try { iframeDoc = this.contentDocument || this.contentWindow.document; - form = jQuery( "#navigate", iframeDoc )[ 0 ]; + form = Sizzle( "#navigate", iframeDoc )[ 0 ]; } catch ( e ) { thrown = e; } if ( loaded ) { - strictEqual( thrown, false, "No error thrown from post-reload jQuery call" ); - - // clean up - jQuery( iframe ).off(); - + strictEqual( thrown, false, "No error thrown from post-reload Sizzle call" ); start(); } else { loaded = true; @@ -504,6 +500,6 @@ asyncTest( "Iframe dispatch should not affect Sizzle, see #13936", 1, function() }); iframeDoc.open(); - iframeDoc.write(""); + iframeDoc.write( "" ); iframeDoc.close(); });