| Index: chrome/test/data/extensions/api_test/webnavigation/test_requestOpenTab.js
|
| diff --git a/chrome/test/data/extensions/api_test/webnavigation/test_requestOpenTab.js b/chrome/test/data/extensions/api_test/webnavigation/test_requestOpenTab.js
|
| index cdc868ec511a5f3aa981065dbf84225ab1a0ab55..9a297c3a603926aecfda43fa4acf1ce87c0f6fb3 100644
|
| --- a/chrome/test/data/extensions/api_test/webnavigation/test_requestOpenTab.js
|
| +++ b/chrome/test/data/extensions/api_test/webnavigation/test_requestOpenTab.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;
|
| @@ -90,4 +90,4 @@ function runTests() {
|
| },
|
| ]);
|
| });
|
| -}
|
| +};
|
|
|