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

Unified Diff: LayoutTests/http/tests/security/contentSecurityPolicy/resources/go-to-echo-report.js

Issue 23172003: Improve parallelization of CSP and XSSAuditor reporting tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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: LayoutTests/http/tests/security/contentSecurityPolicy/resources/go-to-echo-report.js
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/resources/go-to-echo-report.js b/LayoutTests/http/tests/security/contentSecurityPolicy/resources/go-to-echo-report.js
index 739411d2c5cd7036b41e6621483d6f029871ea7b..b66a1d672fc83d01e6e6f6dbc35c51e919ef4bc3 100644
--- a/LayoutTests/http/tests/security/contentSecurityPolicy/resources/go-to-echo-report.js
+++ b/LayoutTests/http/tests/security/contentSecurityPolicy/resources/go-to-echo-report.js
@@ -4,5 +4,9 @@ if (window.testRunner) {
}
window.onload = function () {
- window.location = "/security/contentSecurityPolicy/resources/echo-report.php";
+ var test = window.location.pathname.replace(/^.+\//, '');
+ var match = window.location.search.match(/^\?test=([^&]+)/);
+ if (match)
+ test = match[1];
+ window.location = "/security/contentSecurityPolicy/resources/echo-report.php?test=" + test;
}

Powered by Google App Engine
This is Rietveld 408576698