https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 692d06d8abb80685ed82a207400a91e90570e966 authored by Jonathon Kereliuk on 03 April 2018, 17:34:40 UTC
remove junk
Tip revision: 692d06d
EventListener-incumbent-global-2.sub.html
<!doctype html>
<meta charset=utf-8>
<title></title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<iframe src="{{location[scheme]}}://{{domains[www1]}}:{{ports[http][0]}}{{location[path]}}/../EventListener-incumbent-global-subframe-2.sub.html"></iframe>
<script>

var t = async_test("Check the incumbent global EventListeners  are called with");

onload = t.step_func(function() {
  onmessage = t.step_func_done(function(e) {
    var d = e.data;
    assert_equals(d.actual, d.expected, d.reason);
  });

  frames[0].postMessage("start", "*");
});

</script>
back to top