blob: 8a7a43e0780f357fb8208bf5793eaf0863814eec [file] [log] [blame]
arv@chromium.orgc9d72fa2012-02-16 02:47:12 +00001<!DOCTYPE html>
2<body>
mark.lam@apple.comb130a342013-09-07 22:48:36 +00003<script src="../../../resources/js-test-pre.js"></script>
arv@chromium.orgc9d72fa2012-02-16 02:47:12 +00004<script>
5
6description('Tests that the Window constructor is present and that window is an instanceof of it.');
7
8shouldNotBe('typeof Window', '"undefined"');
9shouldBeTrue('window instanceof Window');
10
11</script>
mark.lam@apple.comb130a342013-09-07 22:48:36 +000012<script src="../../../resources/js-test-post.js"></script>
arv@chromium.orgc9d72fa2012-02-16 02:47:12 +000013</body>