Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iframe focuses parent different site outer</title>
</head>
<body>
<script>
var w = null;
var focusDisallowed = false;
var failed = false;
window.onmessage = function(e) {
if (failed) {
return;
}
if (e.data == "ready") {
focusDisallowed = true;
document.getElementsByTagName("iframe")[0].contentWindow.postMessage("focus", "*");
return;
}
focusDisallowed = false;
if (w) {
w.close();
w = null;
}
opener.postMessage(failed ? "FAIL" : "PASS", "*");
}
window.onload = function() {
w = window.open("iframe-focuses-parent-different-site-other.html");
}
document.body.onfocus = function() {
if (focusDisallowed) {
failed = true;
}
}
</script>
</body>
</html>