diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2016-04-10 15:42:44 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2016-04-11 13:32:51 -0400 |
commit | e5ffcb0838c894e26f4ff32dfec162cf624d8d7d (patch) | |
tree | 1a57c3a0cbf026dcd98d1f821dc9ed6f848f46d3 /test/data/event/focusinCrossFrame.html | |
parent | 08d73d7f9c7eec2f0abd14d00bf903625728ef17 (diff) | |
download | jquery-e5ffcb0838c894e26f4ff32dfec162cf624d8d7d.tar.gz jquery-e5ffcb0838c894e26f4ff32dfec162cf624d8d7d.zip |
Tests: Refactor testIframe() to make it DRYer and more consistent
Ref gh-3040
Closes gh-3049
Diffstat (limited to 'test/data/event/focusinCrossFrame.html')
-rw-r--r-- | test/data/event/focusinCrossFrame.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/data/event/focusinCrossFrame.html b/test/data/event/focusinCrossFrame.html index 487f8de8f..6dd187e90 100644 --- a/test/data/event/focusinCrossFrame.html +++ b/test/data/event/focusinCrossFrame.html @@ -5,13 +5,14 @@ <title>focusin event cross-frame (#14180)</title> <script src="../../jquery.js"></script> + <script src="../iframeTest.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 ); + startIframeTest(); }); </script> </body> |