-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1652146 [wpt PR 24566] - Test that MessagePort owners are current…
…, not incumbent, a=testonly Automatic update from web-platform-tests Test that MessagePort owners are current, not incumbent Follows whatwg/html#5728. -- wpt-commits: 299084220865342716773d5116880a63711339d7 wpt-pr: 24566
- Loading branch information
1 parent
6c972bd
commit 898534f
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
testing/web-platform/tests/webmessaging/multi-globals/messageport-current.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<title>Making the current page become non-active must prevent message transmission</title> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<!-- This is the entry global --> | ||
|
||
<iframe src="support/incumbent.html" id="incumbent"></iframe> | ||
<iframe src="support/current.html" id="current"></iframe> | ||
|
||
<script> | ||
"use strict"; | ||
const incumbentIframe = document.querySelector("#incumbent"); | ||
const currentIframe = document.querySelector("#current"); | ||
|
||
window.addEventListener("load", () => { | ||
promise_test(async t => { | ||
// This will invoke the constructor from currentIframe, but with incumbentIframe as the incumbent. | ||
const messageChannel = incumbentIframe.contentWindow.createMessageChannel(); | ||
|
||
await new Promise((resolve, reject) => { | ||
currentIframe.onload = () => resolve(); | ||
currentIframe.onerror = () => reject(new Error("Could not navigate the iframe")); | ||
currentIframe.src = "/common/blank.html"; | ||
}); | ||
|
||
messageChannel.port1.onmessage = t.unreached_func("message event recieved"); | ||
messageChannel.port1.onmessageerror = t.unreached_func("messageerror event recieved"); | ||
messageChannel.port2.postMessage("boo"); | ||
|
||
// We are testing that neither of the above two events fire. We assume that a 3 second timeout | ||
// is good enough. We can't use any other API for an end condition because each MessagePort has | ||
// its own independent port message queue, which has no ordering guarantees relative to other | ||
// APIs. | ||
await new Promise(resolve => t.step_timeout(resolve, 3000)); | ||
}); | ||
}); | ||
</script> |
35 changes: 35 additions & 0 deletions
35
testing/web-platform/tests/webmessaging/multi-globals/messageport-incumbent.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<title>Making the incumbent page become non-active must not prevent message transmission</title> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<!-- This is the entry global --> | ||
|
||
<iframe src="support/incumbent.html" id="incumbent"></iframe> | ||
<iframe src="support/current.html" id="current"></iframe> | ||
|
||
<script> | ||
"use strict"; | ||
const incumbentIframe = document.querySelector("#incumbent"); | ||
const currentIframe = document.querySelector("#current"); | ||
|
||
window.addEventListener("load", () => { | ||
promise_test(async () => { | ||
// This will invoke the constructor from currentIframe, but with incumbentIframe as the incumbent. | ||
const messageChannel = incumbentIframe.contentWindow.createMessageChannel(); | ||
|
||
await new Promise((resolve, reject) => { | ||
incumbentIframe.onload = () => resolve(); | ||
incumbentIframe.onerror = () => reject(new Error("Could not navigate the iframe")); | ||
incumbentIframe.src = "/common/blank.html"; | ||
}); | ||
|
||
await new Promise((resolve, reject) => { | ||
messageChannel.port1.onmessage = () => resolve(); | ||
messageChannel.port1.onmessageerror = () => reject("messageerror event recieved"); | ||
messageChannel.port2.postMessage("boo"); | ||
}); | ||
}); | ||
}); | ||
</script> |
5 changes: 5 additions & 0 deletions
5
testing/web-platform/tests/webmessaging/multi-globals/support/current.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<title>Current page used as a test helper</title> | ||
|
||
<h1>Current</h1> |
13 changes: 13 additions & 0 deletions
13
testing/web-platform/tests/webmessaging/multi-globals/support/incumbent.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<title>Incumbent page used as a test helper</title> | ||
|
||
<h1>Incumbent</h1> | ||
|
||
<script> | ||
"use strict"; | ||
|
||
window.createMessageChannel = () => { | ||
return new parent.frames[1].MessageChannel(); | ||
}; | ||
</script> |