Index: sky/engine/web/tests/data/push_state.html |
diff --git a/sky/engine/web/tests/data/push_state.html b/sky/engine/web/tests/data/push_state.html |
deleted file mode 100644 |
index 3e0e985172d712a3b299ea94d0fd6185fccaf2eb..0000000000000000000000000000000000000000 |
--- a/sky/engine/web/tests/data/push_state.html |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-<body onload="sendXHR()"> |
-<script> |
-// We need to test pushState after the load event has finished. |
-// Do so on an XHR callback to ensure that it's after the load event, |
-// but WebFrameTest has a pending task to wait for. |
-function sendXHR() { |
- var xhr = new XMLHttpRequest(); |
- xhr.onreadystatechange = function() { |
- if (xhr.readyState == 4) |
- history.pushState("test", "", "#1"); |
- } |
- xhr.open("GET", "push_state.html", true); |
- xhr.send(); |
-} |
-</script> |
-</body> |