diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2013-09-17 18:51:54 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-10-22 22:03:20 -0400 |
commit | 9b6f0745805941a6d7b7c16c02cf56ab00021c82 (patch) | |
tree | 7b3329a0d1d739481ef1776986b872653c00093d /test | |
parent | 083edd60a6c189f17ff1087431e849dd11c111b2 (diff) | |
download | jquery-9b6f0745805941a6d7b7c16c02cf56ab00021c82.tar.gz jquery-9b6f0745805941a6d7b7c16c02cf56ab00021c82.zip |
Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369.
Diffstat (limited to 'test')
-rw-r--r-- | test/data/event/focusinCrossFrame.html | 18 | ||||
-rw-r--r-- | test/unit/event.js | 27 |
2 files changed, 45 insertions, 0 deletions
diff --git a/test/data/event/focusinCrossFrame.html b/test/data/event/focusinCrossFrame.html new file mode 100644 index 000000000..487f8de8f --- /dev/null +++ b/test/data/event/focusinCrossFrame.html @@ -0,0 +1,18 @@ +<!doctype html> +<html> +<head> + <meta http-equiv="Content-type" content="text/html; charset=utf-8"> + <title>focusin event cross-frame (#14180)</title> + + <script src="../../jquery.js"></script> +</head> +<body> + <input type="text" id="frame-input" /> + <script> + // Call parent when this frame is fully loaded, it will mess with #frame-input + jQuery( window ).one( "load", function() { + window.parent.iframeCallback( document ); + }); + </script> +</body> +</html> diff --git a/test/unit/event.js b/test/unit/event.js index 26f219195..21dda5a0f 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -2434,6 +2434,33 @@ test("fixHooks extensions", function() { jQuery.event.fixHooks.click = saved; }); +testIframeWithCallback( "focusin from an iframe", "event/focusinCrossFrame.html", function( frameDoc ) { + expect(1); + + var input = jQuery( frameDoc ).find( "#frame-input" ); + + // Create a focusin handler on the parent; shouldn't affect the iframe's fate + jQuery ( "body" ).on( "focusin.iframeTest", function() { + ok( false, "fired a focusin event in the parent document" ); + }); + + input.on( "focusin", function() { + ok( true, "fired a focusin event in the iframe" ); + }); + + // Avoid a native event; Chrome can't force focus to another frame + input.trigger( "focusin" ); + + // Must manually remove handler to avoid leaks in our data store + input.remove(); + + // Be sure it was removed; nothing should happen + input.trigger( "focusin" ); + + // Remove body handler manually since it's outside the fixture + jQuery( "body" ).off( "focusin.iframeTest" ); +}); + testIframeWithCallback( "jQuery.ready promise", "event/promiseReady.html", function( isOk ) { expect(1); ok( isOk, "$.when( $.ready ) works" ); |