summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/iframe-focuses-parent-different-site.html
blob: 8a0b5ecca012309974cd4069fd2ec3eafdd15ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<meta charset=utf-8>
<title>iframe focuses parent</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
setup({explicit_done:true});
var w = null;
window.onload = function() {
  window.onmessage = function(e) {
      test(function() {
          assert_equals(e.data, "PASS", 'Check result');
      }, "Check result");
      w.close();
      w = null;
      done();
  };
  w = window.open("support/iframe-focuses-parent-different-site-outer.sub.html");
}
</script>