Index: LayoutTests/fast/dom/HTMLDocument/clone-node.html |
diff --git a/LayoutTests/fast/dom/HTMLDocument/clone-node.html b/LayoutTests/fast/dom/HTMLDocument/clone-node.html |
index a1ea3b506e98200e8cc6cd6b7f4e2efb1ca83620..28b56a866b7d07b9554688cb2b552185e4643469 100644 |
--- a/LayoutTests/fast/dom/HTMLDocument/clone-node.html |
+++ b/LayoutTests/fast/dom/HTMLDocument/clone-node.html |
@@ -13,12 +13,14 @@ shouldBe('document.cloneNode(false).__proto__', 'HTMLDocument.prototype'); |
shouldBeEqualToString('className(document.cloneNode(false))', 'HTMLDocument'); |
shouldBe('document.cloneNode(true).title', 'document.title'); |
shouldBeEqualToString('document.cloneNode(true).compatMode', 'BackCompat'); |
+shouldBeEqualToString('document.cloneNode(true).contentType', 'text/html'); |
var doc = document.implementation.createHTMLDocument('title'); |
shouldBe('doc.cloneNode(false).__proto__', 'HTMLDocument.prototype'); |
shouldBeEqualToString('className(doc.cloneNode(false))', 'HTMLDocument'); |
shouldBe('doc.cloneNode(true).title', 'doc.title'); |
shouldBeEqualToString('doc.cloneNode(true).compatMode', 'CSS1Compat'); |
+shouldBeEqualToString('doc.cloneNode(true).contentType', 'text/html'); |
</script> |
</body> |