Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(535)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-strict-dynamic-whitelist.html

Issue 2082613002: Rename 'unsafe-dynamic' to 'strict-dynamic' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-strict-dynamic-whitelist.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-unsafe-dynamic-whitelist.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-strict-dynamic-whitelist.html
similarity index 89%
rename from third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-unsafe-dynamic-whitelist.html
rename to third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-strict-dynamic-whitelist.html
index 0e1176f4efdc8996cfeaaa0f95c5023d75b0ddac..a737148d95d7bf8bc7f388de41508b97d661439a 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-unsafe-dynamic-whitelist.html
+++ b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/script-src-strict-dynamic-whitelist.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <meta http-equiv="Content-Security-Policy" content="script-src 'nonce-abcdefg' 'unsafe-dynamic' http://localhost:8000">
+ <meta http-equiv="Content-Security-Policy" content="script-src 'nonce-abcdefg' 'strict-dynamic' http://localhost:8000">
<script src="/resources/testharness.js" nonce="abcdefg"></script>
<script src="/resources/testharnessreport.js" nonce="abcdefg"></script>
</head>
@@ -26,7 +26,7 @@
assert_equals(loaded[generateURL("write")], undefined);
assert_true(blocked[24]);
}, 1));
- }, "Script injected via 'document.write' is not allowed with 'unsafe-dynamic', even if whitelisted.");
+ }, "Script injected via 'document.write' is not allowed with 'strict-dynamic', even if whitelisted.");
async_test(function (t) {
document.write("<scr" + "ipt defer src='" + generateURL("write-defer") + "'></scr" + "ipt>");
@@ -34,7 +34,7 @@
assert_equals(loaded[generateURL("write-defer")], undefined);
assert_true(blocked[32]);
}, 1));
- }, "Deferred script injected via 'document.write' is not allowed with 'unsafe-dynamic', even if whitelisted.");
+ }, "Deferred script injected via 'document.write' is not allowed with 'strict-dynamic', even if whitelisted.");
async_test(function (t) {
document.write("<scr" + "ipt async src='" + generateURL("write-async") + "'></scr" + "ipt>");
@@ -42,7 +42,7 @@
assert_equals(loaded[generateURL("write-async")], undefined);
assert_true(blocked[40]);
}, 1));
- }, "Async script injected via 'document.write' is not allowed with 'unsafe-dynamic', even if whitelisted.");
+ }, "Async script injected via 'document.write' is not allowed with 'strict-dynamic', even if whitelisted.");
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698