blob: 8d5d91ae9d5daa2deca6f2da4f9b991600d15a40 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../../resources/js-test-pre.js"></script>
<script>
description("Tests that isEqualNode() works as expected for DocumentType nodes");
var htmlDoctype = document.implementation.createDocumentType("html", "", "");
var htmlDocument = document.implementation.createHTMLDocument();
shouldBeTrue("htmlDocument.doctype.isEqualNode(htmlDoctype)");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>