Index: content/test/data/push_state.html |
diff --git a/content/test/data/push_state.html b/content/test/data/push_state.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..22178ee476916d0dc36dfe440af6db10fd594215 |
--- /dev/null |
+++ b/content/test/data/push_state.html |
@@ -0,0 +1,12 @@ |
+<html> |
+<head> |
+<script> |
+window.onload = function() { |
+ setTimeout(function() { |
+ history.pushState("", "", "#pushState"); |
+ document.title = "pushState"; |
+ }, 0); |
+} |
+</script> |
+</head> |
+</html> |