| Index: chrome/test/data/extensions/api_test/webnavigation/test_history.js
|
| diff --git a/chrome/test/data/extensions/api_test/webnavigation/test_history.js b/chrome/test/data/extensions/api_test/webnavigation/test_history.js
|
| index e06e264c161a0bfd1c5d0e5bebd259c57fa2f27c..76f3e37a30ef7f92fe3a70d824c0bcc1b6abbb59 100644
|
| --- a/chrome/test/data/extensions/api_test/webnavigation/test_history.js
|
| +++ b/chrome/test/data/extensions/api_test/webnavigation/test_history.js
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -function runTests() {
|
| +onload = function() {
|
| var getURL = chrome.extension.getURL;
|
| chrome.tabs.create({"url": "about:blank"}, function(tab) {
|
| var tabId = tab.id;
|
| @@ -55,4 +55,4 @@ function runTests() {
|
| },
|
| ]);
|
| });
|
| -}
|
| +};
|
|
|