| Index: chrome/test/data/extensions/samples/make_page_red_no_icon/background.html
|
| diff --git a/chrome/test/data/extensions/samples/make_page_red_no_icon/background.html b/chrome/test/data/extensions/samples/make_page_red_no_icon/background.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..084359575d6d02c3ddacd7b765622683851cb02b
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/samples/make_page_red_no_icon/background.html
|
| @@ -0,0 +1,10 @@
|
| +<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'"});
|
| + });
|
| +</script>
|
| +</head>
|
| +</html>
|
|
|