| Index: chrome/test/data/extensions/api_test/browser_action_no_icon/background.html
|
| diff --git a/chrome/test/data/extensions/api_test/browser_action_no_icon/background.html b/chrome/test/data/extensions/api_test/browser_action_no_icon/background.html
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..5379de0f695c947b2b3829a78b05e2ff149e74e8
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/browser_action_no_icon/background.html
|
| @@ -0,0 +1,12 @@
|
| +<html>
|
| +<head>
|
| +<script>
|
| + // Called when the user clicks on the browser action.
|
| + chrome.browserAction.onClicked.addListener(function(windowId) {
|
| + chrome.tabs.executeScript(null, {code:"document.body.bgColor='red'"});
|
| + });
|
| +
|
| + chrome.test.notifyPass();
|
| +</script>
|
| +</head>
|
| +</html>
|
|
|