servo/tests/content/test_global.html
2014-09-08 20:21:42 -06:00

13 lines
195 B
HTML

<html>
<head>
<script src="harness.js"></script>
<script>
is(window, window.window);
is(window, this);
for (var key in this) {
is(this[key], window[key]);
}
finish();
</script>
</head>
</html>