| Index: chrome/test/data/favicon/pushstate_with_favicon.html
|
| diff --git a/chrome/test/data/favicon/pushstate_with_favicon.html b/chrome/test/data/favicon/pushstate_with_favicon.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3521fcd0a11671c00728aee52eb19dbe1cd66bd2
|
| --- /dev/null
|
| +++ b/chrome/test/data/favicon/pushstate_with_favicon.html
|
| @@ -0,0 +1,13 @@
|
| +<html>
|
| +<head>
|
| +<link rel="icon" href="icon.png"/>
|
| +<script>
|
| +window.onload = function() {
|
| + setTimeout(function() {
|
| + history.pushState("", "", "/favicon/pushstate_with_favicon_pushed.html");
|
| + document.title = "pushState";
|
| + }, 0);
|
| +}
|
| +</script>
|
| +</head>
|
| +</html>
|
|
|