| Index: chrome/test/data/extensions/api_test/webnavigation/test_clientRedirect.js
|
| diff --git a/chrome/test/data/extensions/api_test/webnavigation/test_clientRedirect.js b/chrome/test/data/extensions/api_test/webnavigation/test_clientRedirect.js
|
| index 72534c4ec6bf8a086117a238474a0a4062d54da7..cfdea4fe168529faef8ecf58d9cf56d6d1803e49 100644
|
| --- a/chrome/test/data/extensions/api_test/webnavigation/test_clientRedirect.js
|
| +++ b/chrome/test/data/extensions/api_test/webnavigation/test_clientRedirect.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;
|
| @@ -77,4 +77,4 @@ function runTests() {
|
| },
|
| ]);
|
| });
|
| -}
|
| +};
|
|
|