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

Unified Diff: LayoutTests/fast/dom/document-importNode-arguments.html

Issue 371693002: Set default deep value false in Document.importNode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Take review comment into consideration Created 6 years, 5 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-importNode-arguments-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/document-importNode-arguments.html
diff --git a/LayoutTests/fast/dom/document-importNode-arguments.html b/LayoutTests/fast/dom/document-importNode-arguments.html
index 66f89c53e50bf69cf61e54facd803c22fd0ffeea..1f2b4e0904df714f2ab9638d77471d731d3a3a43 100644
--- a/LayoutTests/fast/dom/document-importNode-arguments.html
+++ b/LayoutTests/fast/dom/document-importNode-arguments.html
@@ -15,8 +15,8 @@ var d = document.createElement("div");
d.innerHTML = "<span>hello </span><span>world</span>";
imported = document.importNode(d);
-shouldBe('imported.childNodes.length','2');
-shouldBeTrue("imported.textContent == 'hello world'");
+shouldBe('imported.childNodes.length','0');
+shouldBeTrue("imported.textContent == ''");
imported = document.importNode(d, true);
shouldBe('imported.childNodes.length','2');
« no previous file with comments | « no previous file | LayoutTests/fast/dom/document-importNode-arguments-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698