summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/focus-restoration-in-different-site-iframes-window.html
blob: 61e604b3c77010866e54507211b6c57d84bc781a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>