| Index: chrome/test/data/extensions/api_test/webnavigation/test_simpleLoad.js
|
| diff --git a/chrome/test/data/extensions/api_test/webnavigation/test_simpleLoad.js b/chrome/test/data/extensions/api_test/webnavigation/test_simpleLoad.js
|
| index 094f05e7d8d1823e4978baef9c9764047f23a305..37a6eb22555545845d82a308c8d83dc95d7f632f 100644
|
| --- a/chrome/test/data/extensions/api_test/webnavigation/test_simpleLoad.js
|
| +++ b/chrome/test/data/extensions/api_test/webnavigation/test_simpleLoad.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;
|
| @@ -46,4 +46,4 @@ function runTests() {
|
| },
|
| ]);
|
| });
|
| -}
|
| +};
|
|
|