blob: 554c97b70834b5b07ddc387101ac3513d27db2b5 [file] [log] [blame]
<!doctype html>
<html>
<head>
<script src="../../../../resources/js-test.js"></script>
</head>
<body>
<script>
description("document.implementation.createDocument with current document's DOCTYPE.")
var doctype = document.doctype;
var doc;
shouldNotThrow("doc = document.implementation.createDocument(null, null, document.doctype)");
shouldBe('doc.doctype', 'doctype');
shouldBe('doc.firstChild', 'doctype');
shouldBe('document.doctype', 'null');
</script>
</body>
</html>