diff options
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> |