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

Unified Diff: chrome/test/data/favicon/replacestate_with_favicon.html

Issue 2949023002: [WIP] Fix history.replaceState() not propagating back favicons (Closed)
Patch Set: Focus on history.replaceState() Created 3 years, 5 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: chrome/test/data/favicon/replacestate_with_favicon.html
diff --git a/chrome/test/data/favicon/replacestate_with_favicon.html b/chrome/test/data/favicon/replacestate_with_favicon.html
new file mode 100644
index 0000000000000000000000000000000000000000..6d66cadc518c1d8aa3254c80a8d48e825de6781c
--- /dev/null
+++ b/chrome/test/data/favicon/replacestate_with_favicon.html
@@ -0,0 +1,14 @@
+<html>
+<head>
+<link rel="icon" href="icon.png"/>
+<script>
+window.onload = function() {
+ setTimeout(function() {
+ history.replaceState("", "",
+ "/favicon/replacestate_with_favicon_replaced.html");
+ document.title = "replaceState";
+ }, 0);
+}
+</script>
+</head>
+</html>

Powered by Google App Engine
This is Rietveld 408576698