| Index: chrome/test/data/extensions/api_test/page_action_popup/background.html
|
| diff --git a/chrome/test/data/extensions/api_test/page_action_popup/background.html b/chrome/test/data/extensions/api_test/page_action_popup/background.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..00f654a0124ac169d499c27ca87323e0250f8bbe
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/page_action_popup/background.html
|
| @@ -0,0 +1,6 @@
|
| +<script>
|
| + chrome.tabs.getSelected(null, function(tab) {
|
| + chrome.pageAction.show(tab.id);
|
| + chrome.test.notifyPass();
|
| + });
|
| +</script>
|
|
|