Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: LayoutTests/fast/dom/HTMLDocument/clone-node.html

Issue 151653004: Implemented Document.contentType (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase and fixing tests on windows Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
« no previous file with comments | « LayoutTests/fast/dom/Document/clone-node-expected.txt ('k') | LayoutTests/fast/dom/HTMLDocument/clone-node-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698