Revert "Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369."

This reverts commit bba8366af4.

Because cross-frame focus sucks.
This commit is contained in:
Dave Methvin
2013-10-22 22:47:34 -04:00
parent bba8366af4
commit 469150a27e
3 changed files with 7 additions and 59 deletions

View File

@@ -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>