| <!doctype html> | |
| <html> | |
| <script> | |
| // Freezing the chrome object results in our lazy bindings failing. But | |
| // nothing should crash. | |
| Object.freeze(chrome); | |
| // Repeatedly trigger the lazy accessor to make sure nothing crashes on | |
| // subsequent runs (which would normally be unexpected). | |
| chrome.app; | |
| chrome.app; | |
| chrome.app; | |
| </script> | |
| </html> |