mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
12 lines
185 B
HTML
12 lines
185 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]);
|
|
}
|
|
</script>
|
|
</head>
|
|
</html>
|