| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <script> | 2 <script> |
| 3 // Test that we can call the tabs API. We don't care what the result is; tabs | 3 // Test that we can call the tabs API. We don't care what the result is; tabs |
| 4 // are tested elsewhere. We just care that we can call it without a | 4 // are tested elsewhere. We just care that we can call it without a |
| 5 // permissions error. | 5 // permissions error. |
| 6 chrome.windows.getAll(null, function() { | 6 chrome.windows.getAll(null, function() { |
| 7 chrome.test.assertNoLastError(); | 7 chrome.test.assertNoLastError(); |
| 8 chrome.extension.getBackgroundPage().onNotificationDone(); | 8 chrome.extension.getBackgroundPage().onNotificationDone(window); |
| 9 }); | 9 }); |
| 10 </script> | 10 </script> |
| 11 Why hello there. | 11 Why hello there. |
| 12 </html> | 12 </html> |
| OLD | NEW |