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 |
deleted file mode 100644 |
index ba630374160037b637e9a76b263334e867d7d960..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/service-worker-blocked.html |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-<!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> |