https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d1cb0cb34bafcce4854d42748432befdbe8295dd authored by Geoffrey Sneddon on 30 April 2018, 13:30:23 UTC
fixup! Fix #2669: Add alternate_hosts
Tip revision: d1cb0cb
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