| Index: chrome/test/data/extensions/api_test/page_action/background.html
|
| diff --git a/chrome/test/data/extensions/api_test/page_action/background.html b/chrome/test/data/extensions/api_test/page_action/background.html
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..89e8f6fee7b335e2985c4149c7fdc41bee589ce9
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/page_action/background.html
|
| @@ -0,0 +1,12 @@
|
| +<html>
|
| +<head>
|
| +<script>
|
| + // Called when the user clicks on the browser action.
|
| + chrome.pageAction.onClicked.addListener(function(windowId) {
|
| + chrome.test.notifyPass();
|
| + });
|
| +
|
| + chrome.test.notifyPass();
|
| +</script>
|
| +</head>
|
| +</html>
|
|
|