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

Unified Diff: LayoutTests/fast/dom/Document/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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Document/clone-node-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/Document/clone-node.html
diff --git a/LayoutTests/fast/dom/Document/clone-node.html b/LayoutTests/fast/dom/Document/clone-node.html
index b451d735d56619a3919bed8463a273b11cbe9219..cf0b91700a8071ef2af13bab541687b38510b5f6 100644
--- a/LayoutTests/fast/dom/Document/clone-node.html
+++ b/LayoutTests/fast/dom/Document/clone-node.html
@@ -13,10 +13,12 @@ var doc = document.implementation.createDocument('', 'root', null);
shouldBe('doc.cloneNode(false).__proto__', 'XMLDocument.prototype');
shouldBeEqualToString('className(doc.cloneNode(false))', 'XMLDocument');
shouldBeEqualToString('doc.cloneNode(true).documentElement.localName', 'root');
+shouldBeEqualToString('doc.cloneNode(true).contentType', 'application/xml');
shouldBeEqualToString('document.cloneNode(true).compatMode', 'CSS1Compat');
shouldBe('document.cloneNode(false).URL', 'document.URL');
shouldBe('document.cloneNode(false).baseURI', 'document.baseURI');
shouldBe('document.cloneNode(false).characterSet', 'document.characterSet');
+shouldBeEqualToString('document.cloneNode(true).contentType', 'text/html');
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Document/clone-node-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698