| Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/script-src/script-src-strict_dynamic_worker.https.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/script-src/script-src-strict_dynamic_worker.https.html b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/script-src/script-src-strict_dynamic_worker.https.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..213eb6276d854d394b51089bb1585a19c77be93c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/script-src/script-src-strict_dynamic_worker.https.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<script src='/resources/testharness.js'></script>
|
| +<script src='/resources/testharnessreport.js'></script>
|
| +<script src='../support/testharness-helper.js'></script>
|
| +
|
| +<meta http-equiv="content-security-policy" content="script-src 'nonce-abc' 'strict-dynamic'">
|
| +
|
| +<script nonce="abc">
|
| + assert_worker_is_loaded(
|
| + "../support/ping.js",
|
| + "Dedicated worker is allowed via 'strict-dynamic'");
|
| +
|
| + assert_shared_worker_is_loaded(
|
| + "../support/ping.js",
|
| + "Shared worker is allowed via 'strict-dynamic'");
|
| +
|
| + assert_service_worker_is_loaded(
|
| + "../support/ping.js",
|
| + "Service worker is allowed via 'strict-dynamic'");
|
| +</script>
|
|
|