blob: a7b08e58e1cfef6be9dd3afba9c051ff05d5c4c9 [file] [edit]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/js-test.js"></script>
<script>
description('This tests that head appears before body in the result of (new DOMParser).parseFromString');
doc = (new DOMParser).parseFromString('', 'text/html');
shouldBe('doc.documentElement.children[0]', 'doc.head');
shouldBe('doc.documentElement.children[1]', 'doc.body');
</script>
</body>
</html>