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

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

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

Powered by Google App Engine
This is Rietveld 408576698