Skip to content

Commit

Permalink
Merge ee2595d into a8b4bb1
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Oct 31, 2016
2 parents a8b4bb1 + ee2595d commit 7d435fe
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eventsource/eventsource-onmessage-realm-support.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<!DOCTYPE html>
<title>This page is just used to grab an EventSource constructor</title>
23 changes: 23 additions & 0 deletions eventsource/eventsource-onmessage-realm.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>EventSource: message event Realm</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/comms.html#dispatchMessage">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<iframe src="eventsource-onmessage-realm-support.htm"></iframe>

<script>
"use strict";

async_test(t => {
window.onload = t.step_func(() => {
const source = new frames[0].EventSource("resources/message.py");

source.onmessage = t.step_func_done(e => {
assert_equals(e.constructor, frames[0].MessageEvent);
source.close();
});
});
}, "the MessageEvent must be created in the Realm of the EventSource");
</script>

0 comments on commit 7d435fe

Please sign in to comment.