Source-Repo: https://github.com/servo/servo Source-Revision: bb7621f5dc33dd5068a3a4de7cdfe3af8b3d4130
13 lines
289 B
HTML
13 lines
289 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);
|
|
</script>
|
|
</head>
|
|
</html>
|