chromium/third_party/blink/web_tests/external/wpt/focus/support/iframe-contentwindow-focus-with-same-as-top-intermediate-frame-outer.html

<!doctype html>
<meta charset="utf-8">
<title>iframe.contentWindow.focus() with same-as-top intermediate frame outer</title>
<script>
let log = "";
function getLog() {
    return log;
}
window.onmessage = function(e) {
    log += e.data;
};
window.onload = function() {
    log += "outeronload;";
        log += "outeractivelement:" + document.activeElement.localName + ";";
    document.getElementsByTagName("iframe")[0].contentWindow.postMessage("starttest;", "*");
    opener.step_timeout(function() {
        log += "outeractivelement:" + document.activeElement.localName + ";";
        opener.postMessage(getLog(), "*");
    }, 2000);
}
</script>
<iframe src="iframe-contentwindow-focus-with-same-as-top-intermediate-frame-middle.sub.html"></iframe>