Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/require-sri-for/require-sri-for-worker-allowed.php |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/require-sri-for/require-sri-for-worker-allowed.php b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/require-sri-for/require-sri-for-worker-allowed.php |
new file mode 100644 |
index 0000000000000000000000000000000000000000..006d9d0e7ff9cbaa8da774b4bae46fc852c66dd0 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/require-sri-for/require-sri-for-worker-allowed.php |
@@ -0,0 +1,15 @@ |
+<!doctype html> |
+<script src="/resources/testharness.js"></script> |
+<script src="/resources/testharnessreport.js"></script> |
+// TODO(mkwst) extend the policy when workers support SRI |
+<meta http-equiv="Content-Security-Policy" content="require-sri-for; script-src 'self' 'unsafe-inline'"> |
+<script> |
+ var executed_test = async_test('Test that a worker can be created.'); |
+ var worker = new Worker("/security/contentSecurityPolicy/require-sri-for/sri-worker.js"); |
+ |
+ worker.onmessage = function(e){ |
+ assert_equals(e.data, "ping"); |
+ }; |
+ document.addEventListener('securitypolicyviolation', executed_test.unreached_func("No report should be generated")); |
+ executed_test.done(); |
+</script> |