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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <link rel="icon" href="icon.png"/>
4 <script>
5 window.onload = function() {
6 setTimeout(function() {
7 history.replaceState("", "",
8 "/favicon/replacestate_with_favicon_replaced.html");
9 document.title = "replaceState";
10 }, 0);
11 }
12 </script>
13 </head>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698