| Index: chrome/test/data/extensions/api_test/active_tab/background.js
|
| diff --git a/chrome/test/data/extensions/api_test/active_tab/background.js b/chrome/test/data/extensions/api_test/active_tab/background.js
|
| index 74e587b41ea73344d70493959c2fdddb1a9a9232..dbf83fcb198c27bb08c0775bc0ffeac98b518e44 100644
|
| --- a/chrome/test/data/extensions/api_test/active_tab/background.js
|
| +++ b/chrome/test/data/extensions/api_test/active_tab/background.js
|
| @@ -56,8 +56,9 @@ chrome.browserAction.onClicked.addListener(function(tab) {
|
|
|
| chrome.webNavigation.onCompleted.addListener(function(details) {
|
| chrome.tabs.executeScript({ code: 'true' }, callbackFail(
|
| - 'Cannot access contents of url "' + details.url +
|
| - '". Extension manifest must request permission to access this host.'));
|
| + 'Cannot access contents of the page. ' +
|
| + 'Extension manifest must request permission to access the ' +
|
| + 'respective host.'));
|
|
|
| chrome.automation.getTree(callbackFail(
|
| 'Cannot request automation tree on url "' + details.url +
|
|
|