mirror of
https://github.com/servo/servo.git
synced 2025-08-19 04:15:33 +01:00
Update web-platform-tests to revision e8bfc205e36ad699601212cd50083870bad9a75d
This commit is contained in:
parent
65dd6d4340
commit
ccdb0a3458
1428 changed files with 118036 additions and 9786 deletions
|
@ -1,5 +1,3 @@
|
|||
@zqzhang
|
||||
@sideshowbarker
|
||||
@deniak
|
||||
@Velmont
|
||||
@Yaffle
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
|
||||
<title>This page is just used to grab an EventSource constructor</title>
|
|
@ -0,0 +1,25 @@
|
|||
<!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");
|
||||
t.add_cleanup(() => {
|
||||
source.close();
|
||||
});
|
||||
|
||||
source.onmessage = t.step_func_done(e => {
|
||||
assert_equals(e.constructor, frames[0].MessageEvent);
|
||||
});
|
||||
});
|
||||
}, "the MessageEvent must be created in the Realm of the EventSource");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue