blob: 54569dd460c80e30db3fc086860a7790480aa5f9 [file] [log] [blame]
<!DOCTYPE html>
<title>document.contentType</title>
<link rel="help" href="http://dom.spec.whatwg.org/#dom-document-contenttype">
<script src="../../resources/js-test.js"></script>
<body>
<script>
var doc = document.implementation.createHTMLDocument('f');
shouldBe('doc.contentType', '"text/html"');
doc = document.implementation.createDocument(null, 'root', null);
shouldBe('doc.contentType', '"application/xml"');
</script>