Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <script> | |
| 4 | |
| 5 chrome.pageActions["action"].addListener(function(actionId, info) { | |
| 6 if (actionId == "action" && typeof(info.tabId) == "number" && | |
| 7 typeof(info.tabUrl) == "string" && info.button == 1) { | |
| 8 chrome.test.notifyPass(); | |
| 9 } else { | |
| 10 chrome.test.notifyFail("pageActions listener failed"); | |
| 11 } | |
| 12 }); | |
| 13 | |
| 14 chrome.test.notifyPass(); | |
| 15 | |
| 16 </script> | |
| 17 </head> | |
| 18 </html> | |
| OLD | NEW |