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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/report-strips-fragment.html

Issue 2619783002: CSP: Strip the fragment from reported URLs. (Closed)
Patch Set: Rebase. Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/report-strips-fragment.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/report-strips-fragment.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/report-strips-fragment.html
new file mode 100644
index 0000000000000000000000000000000000000000..0d4a1117633be14b6680a5a66e632878560c4b99
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/report-strips-fragment.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="./resources/testharness-helper.js"></script>
+
+<meta http-equiv="Content-Security-Policy" content="img-src 'none'">
+<script>
+ async_test(t => {
+ waitUntilCSPEventForURL(t, "https://evil.com/img.png")
+ .then(t.step_func_done(e => {
+ var u = new URL(e.documentURI);
+ assert_equals(u.hash, "");
+ }));
+
+ window.location.hash = "should-not-appear-in-report";
+
+ var i = document.createElement("img");
+ i.src = "https://evil.com/img.png#boo";
+ }, "Reported document URI does not contain fragments.");
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698