Index: chrome/test/data/extensions/api_test/webnavigation/crossProcess/h.js |
diff --git a/chrome/test/data/extensions/api_test/webnavigation/crossProcess/h.js b/chrome/test/data/extensions/api_test/webnavigation/crossProcess/h.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..84c3320c997b3c6524a2a9e56348d7188302e9ec |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/webnavigation/crossProcess/h.js |
@@ -0,0 +1,8 @@ |
+function updateHistory() { |
+ history.pushState({}, "", "empty.html"); |
+} |
+ |
+onload = function() { |
+ var frame = document.getElementById("frame"); |
+ frame.src = "http://127.0.0.1:" + location.search.substr(1) + "/test5"; |
+}; |