Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Window / window-constructor-presence.html
blob01b9591da2bed828507cff700fba9a7bf015e36b
1 <!DOCTYPE html>
2 <body>
3 <script src="../../../resources/js-test.js"></script>
4 <script>
6 description('Tests that the Window constructor is present and that window is an instanceof of it.');
8 shouldNotBe('typeof Window', '"undefined"');
9 shouldBeTrue('window instanceof Window');
11 </script>
12 </body>