├── README.md └── src ├── test.html ├── test_hosted.html └── tests.js /README.md: -------------------------------------------------------------------------------- 1 | ###Strict Mode Tester 2 | 3 | This is the source companion to my [blog post](http://javascriptweblog.wordpress.com/2011/05/03/javascript-strict-mode/) 4 | 5 | I've written a test for all 38 Strict Mode features as defined [here](http://ecma262-5.com/ELS5_HTML.htm#Annex_C) 6 | 7 | For the visual test page open `test.html` in your browser. (You can also run the hosted version [here](http://java-script.limewebs.com/strictMode/test_hosted.html)). 8 | 9 | The file `tests.js` can also be dumped into your developer console - just switch mode to CONSOLE_MODE 10 | -------------------------------------------------------------------------------- /src/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |