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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-at-unique-origin-denied.html

Issue 1495013002: Check for equality of the URL's origin in replaceState/pushState (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Allow --disable-web-security again, add more tests Created 5 years 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/navigation/pushstate-whitelisted-at-unique-origin-denied.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-at-unique-origin-denied.html b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-at-unique-origin-denied.html
new file mode 100644
index 0000000000000000000000000000000000000000..f22e05d938e079b663b6ae146609d3e7a65b532f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-at-unique-origin-denied.html
@@ -0,0 +1,13 @@
+<meta http-equiv="Content-Security-Policy" content="sandbox allow-scripts">
+<script>
+if (window.testRunner) {
+ testRunner.dumpAsText();
+ testRunner.addOriginAccessWhitelistEntry(location.origin, location.protocol, '', false);
+}
+try {
+ history.pushState(null, null, document.URL);
+ document.write("FAIL: URL at unique origin was manipulated via pushState.");
+} catch(e) {
+ document.write("PASS: unique URLs cannot be manipulated via pushState.");
+}
+</script>

Powered by Google App Engine
This is Rietveld 408576698