-
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 1907849: part 8) Add WPTs for trusted types when constructing Wor…
…kers from WorkerGlobalScope. r=smaug Fixes w3c/trusted-types#567. Differential Revision: https://phabricator.services.mozilla.com/D232359
- Loading branch information
1 parent
106b99d
commit b91c207
Showing
4 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
testing/web-platform/meta/trusted-types/WorkerGlobalScope-worker-constructor.html.ini
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,3 @@ | ||
[WorkerGlobalScope-worker-constructor.html] | ||
[Creating a Worker from a string should throw] | ||
expected: FAIL |
14 changes: 14 additions & 0 deletions
14
testing/web-platform/tests/trusted-types/WorkerGlobalScope-worker-constructor.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,14 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
</head> | ||
<body> | ||
<script> | ||
fetch_tests_from_worker(new Worker( | ||
"support/WorkerGlobalScope-worker-constructor.js")); | ||
</script> | ||
</body> | ||
</html> |
23 changes: 23 additions & 0 deletions
23
testing/web-platform/tests/trusted-types/support/WorkerGlobalScope-worker-constructor.js
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,23 @@ | ||
const test_setup_policy = trustedTypes.createPolicy("p", | ||
{ createScriptURL: s => s } | ||
); | ||
|
||
importScripts(test_setup_policy.createScriptURL("/resources/testharness.js")); | ||
|
||
test(() => { | ||
assert_throws_js(TypeError, () => { new Worker("w"); }, | ||
"Creating a Worker threw"); | ||
}, "Creating a Worker from a string should throw"); | ||
|
||
test(() => { | ||
new Worker(test_setup_policy.createScriptURL("u")); | ||
}, "Creating a Worker from a TrustedScriptURL should not throw"); | ||
|
||
test(() => { | ||
trustedTypes.createPolicy("default", | ||
{ createScriptURL: s => "defaultValue" }); | ||
|
||
new Worker("s"); | ||
}, "Creating a Worker from a string with a default policy should not throw"); | ||
|
||
done(); |
1 change: 1 addition & 0 deletions
1
.../web-platform/tests/trusted-types/support/WorkerGlobalScope-worker-constructor.js.headers
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 @@ | ||
Content-Security-Policy: require-trusted-types-for 'script' |