aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/event
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2013-10-22 22:47:34 -0400
committerDave Methvin <dave.methvin@gmail.com>2013-10-22 22:47:34 -0400
commit469150a27e90dcf523a30211a9e8667a64718b81 (patch)
treef065a4d2bda56f656abd4b708ffa3902e5765637 /test/data/event
parentbba8366af48bd2c80c96e7a0f58b3e16fd736125 (diff)
downloadjquery-469150a27e90dcf523a30211a9e8667a64718b81.tar.gz
jquery-469150a27e90dcf523a30211a9e8667a64718b81.zip
Revert "Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369."
This reverts commit bba8366af48bd2c80c96e7a0f58b3e16fd736125. Because cross-frame focus sucks.
Diffstat (limited to 'test/data/event')
-rw-r--r--test/data/event/focusinCrossFrame.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/data/event/focusinCrossFrame.html b/test/data/event/focusinCrossFrame.html
deleted file mode 100644
index 487f8de8f..000000000
--- a/test/data/event/focusinCrossFrame.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!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>