Index: chrome/test/data/extensions/api_test/webnavigation/crossProcess/i.js |
diff --git a/chrome/test/data/extensions/api_test/webnavigation/crossProcess/i.js b/chrome/test/data/extensions/api_test/webnavigation/crossProcess/i.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..77268d1ad72591fbb0c44d619341b57726d5b811 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/webnavigation/crossProcess/i.js |
@@ -0,0 +1,10 @@ |
+function updateHistory() { |
+ history.replaceState({}, "", "empty.html"); |
+} |
+ |
+onload = function() { |
+ setTimeout(function() { |
+ location.href = |
+ "http://127.0.0.1:" + location.search.substr(1) + "/test6"; |
+ }, 0); |
+}; |