blob: 54d16af68df1e0da3846ce9e2c6dee5b8e8ac322 [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>Focus already focused iframe</title>
<script>
let failed = false;
window.onmessage = function(e) {
if (e.data == "focus") {
document.getElementsByTagName("iframe")[0].focus();
opener.step_timeout(function() {
if (failed) {
opener.postMessage("FAIL", "*");
} else {
opener.postMessage("PASS", "*");
}
}, 1500);
} else if (e.data == "FAIL") {
failed = true;
}
}
</script>
<iframe src="http://{{hosts[alt][www]}}:{{ports[http][0]}}/focus/support/focus-already-focused-iframe-inner.html"></iframe>