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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-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-denied.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-denied.html b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-denied.html
new file mode 100644
index 0000000000000000000000000000000000000000..2c646594248acfd4e6cd476d479405d057f88ccb
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-whitelisted-denied.html
@@ -0,0 +1,17 @@
+<script>
+if (window.testRunner) {
+ testRunner.dumpAsText();
+ testRunner.addOriginAccessWhitelistEntry(location.origin, location.protocol, '', false);
+}
+
+var otherOrigin = new URL(document.URL);
+otherOrigin.port = otherOrigin.port ? otherOrigin.port ^ 0xFFFF : 1337;
+otherOrigin = otherOrigin.href;
+
+try {
+ history.pushState(null, null, otherOrigin);
+ document.write("FAIL: pushState to different origin succeeded.");
+} catch(e) {
+ document.write("PASS: pushState to different origin was blocked.");
+}
+</script>

Powered by Google App Engine
This is Rietveld 408576698