OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <title>document.contentType</title> | |
3 <link rel="help" href="http://dom.spec.whatwg.org/#dom-document-contenttype"> | |
4 <script src="../../resources/js-test.js"></script> | |
5 <body> | |
6 <script> | |
7 var doc = document.implementation.createHTMLDocument('f'); | |
8 shouldBe('doc.contentType', '"text/html"'); | |
9 | |
10 doc = document.implementation.createDocument(null, 'root', null); | |
11 shouldBe('doc.contentType', '"application/xml"'); | |
12 </script> | |
OLD | NEW |