summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/focus-already-focused-iframe-same-site.html
blob: 57ef5c7391ef3742ca3e5f596869bf9b4e364a81 (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>Focus already focused iframe</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/focus-already-focused-iframe-same-site-outer.html");
}
</script>