summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/iframe-focuses-parent-same-site.html
blob: f130410e2a1b4cbc1e3d96fb14cbca7f5be2e8ea (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-same-site-outer.html");
}
</script>