blob: 78a952de4a2b63a4389bb6100602e23870f39256 [file] [log] [blame]
<!DOCTYPE html>
<title>document.implementation.createDocument: document.contentType === 'application/xhtml+xml'</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
test(function() {
var doc = document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null);
assert_equals(doc.contentType, "application/xhtml+xml");
});
</script>