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

Unified Diff: LayoutTests/fast/loader/stateobjects/replacestate-base-illegal.html

Issue 3106001: Merge 64077 - 2010-07-26 Justin Schuh <jschuh@chromium.org>... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/WebKit/375/
Patch Set: Created 10 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
« no previous file with comments | « no previous file | LayoutTests/fast/loader/stateobjects/replacestate-base-illegal-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/loader/stateobjects/replacestate-base-illegal.html
===================================================================
--- LayoutTests/fast/loader/stateobjects/replacestate-base-illegal.html (revision 0)
+++ LayoutTests/fast/loader/stateobjects/replacestate-base-illegal.html (revision 55463)
@@ -0,0 +1,26 @@
+<html>
+<head>
+<base href="https://www.test.com/">
+<script>
+if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+
+window.onload = function(){
+ var msg;
+ try {
+ window.history.replaceState({}, {}, 'https://www.test.com/');
+ msg = document.createTextNode("FAIL: URL bar was changed.");
+ } catch (e) {
+ if (e.code == 18)
+ msg = document.createTextNode("PASS: Security exception thrown.");
+ else
+ msg = document.createTextNode("FAIL: Unknown exception thrown.");
+ }
+ document.body.appendChild(msg);
+};
+</script>
+</head>
+<body>
+<p>This page should trigger an error on attempting to set the URL bar to https://www.test.com/</p>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/loader/stateobjects/replacestate-base-illegal-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698