Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/service-worker-blocked.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/service-worker-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/service-worker-blocked.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ba630374160037b637e9a76b263334e867d7d960 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/service-worker-blocked.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<meta http-equiv="Content-Security-Policy" content="child-src 'none';"> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<script> |
+ var t = async_test('Test that a service worker cannot be registered if the CSP does not allow it'); |
+ navigator.serviceWorker.register("resources/service-worker.js").then(function (registration) { |
+ }).catch(function (error) { |
+ t.done(); |
+ }); |
+</script> |
+</head> |
+<body> |