<!DOCTYPE html> | |
<body> | |
<script src="../../../resources/js-test-pre.js"></script> | |
<script> | |
description('Tests that the Window constructor is present and that window is an instanceof of it.'); | |
shouldNotBe('typeof Window', '"undefined"'); | |
shouldBeTrue('window instanceof Window'); | |
</script> | |
<script src="../../../resources/js-test-post.js"></script> | |
</body> |