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