forked from kdashg/gecko-cinn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1832781 [wpt PR 39978] - Test base URL with multiple globals for …
…WebSocket, a=testonly Automatic update from web-platform-tests Test base URL with multiple globals for WebSocket See whatwg/websockets#45 -- wpt-commits: 9d415b811587ee14cd3d06a477ca98e26cb04929 wpt-pr: 39978
- Loading branch information
1 parent
5b5ea31
commit 3b04de1
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
testing/web-platform/tests/websockets/multi-globals/url-parsing/current/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,2 @@ | ||
<!DOCTYPE html> | ||
<title>Current page used as a test helper</title> |
13 changes: 13 additions & 0 deletions
13
testing/web-platform/tests/websockets/multi-globals/url-parsing/incumbent/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> | ||
<title>Incumbent page used as a test helper</title> | ||
|
||
<iframe src="../current/current.html" id="current"></iframe> | ||
|
||
<script> | ||
const current = document.querySelector("#current").contentWindow; | ||
|
||
window.hello = () => { | ||
window.ws = new current.WebSocket('foo'); | ||
ws.close(); | ||
}; | ||
</script> |
22 changes: 22 additions & 0 deletions
22
testing/web-platform/tests/websockets/multi-globals/url-parsing/url-parsing.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,22 @@ | ||
<!DOCTYPE html> | ||
<title>Multiple globals for base URL in WebSocket constructor</title> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<!-- This is the entry global --> | ||
|
||
<iframe src="incumbent/incumbent.html"></iframe> | ||
|
||
<script> | ||
async_test((t) => { | ||
onload = t.step_func_done(() => { | ||
frames[0].hello(); | ||
// Inside constructors, "this's relevant settings object" === "current settings object", | ||
// because of how "this" is constructed. | ||
// https://github.com/whatwg/websockets/issues/46 | ||
const expectedUrl = new URL('current/foo', location.href); | ||
expectedUrl.protocol = 'ws:'; | ||
assert_equals(frames[0].ws.url, expectedUrl.href); | ||
}); | ||
}); | ||
</script> |