arv@chromium.org | c9d72fa | 2012-02-16 02:47:12 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <body> |
mark.lam@apple.com | b130a34 | 2013-09-07 22:48:36 +0000 | [diff] [blame] | 3 | <script src="../../../resources/js-test-pre.js"></script> |
arv@chromium.org | c9d72fa | 2012-02-16 02:47:12 +0000 | [diff] [blame] | 4 | <script> |
| 5 | |
| 6 | description('Tests that the Window constructor is present and that window is an instanceof of it.'); |
| 7 | |
| 8 | shouldNotBe('typeof Window', '"undefined"'); |
| 9 | shouldBeTrue('window instanceof Window'); |
| 10 | |
| 11 | </script> |
mark.lam@apple.com | b130a34 | 2013-09-07 22:48:36 +0000 | [diff] [blame] | 12 | <script src="../../../resources/js-test-post.js"></script> |
arv@chromium.org | c9d72fa | 2012-02-16 02:47:12 +0000 | [diff] [blame] | 13 | </body> |