mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
13 lines
299 B
HTML
13 lines
299 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
<script>
|
|
is_a(window, Window);
|
|
is_a(document.documentElement, HTMLHtmlElement);
|
|
is_a(document.documentElement.firstChild, HTMLHeadElement);
|
|
is(document.documentElement.nextSibling, null);
|
|
is_a(document, Document);
|
|
finish();
|
|
</script>
|
|
</head>
|
|
</html>
|