blob: 61e604b3c77010866e54507211b6c57d84bc781a [file] [log] [blame]
<!doctype html>
<meta charset=utf-8>
<title>Test focus restoration</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
setup({explicit_done:true});
window.onmessage = function(e) {
test(function() {
assert_equals(e.data, "outerlog:log:willfocuswindow,windowfocus,didfocuswindow,windowblur,windowfocus,", 'Check log');
}, "Check result");
w.close();
done();
};
var w = window.open("support/focus-restoration-in-different-site-iframes-outer-window.sub.html");
</script>