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

Unified Diff: LayoutTests/fast/dom/shadow/shadow-div-reflow.html

Issue 441223002: Update LayoutTests by removing child elements of <shadow> element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/shadow/shadow-div-reflow.html
diff --git a/LayoutTests/fast/dom/shadow/shadow-div-reflow.html b/LayoutTests/fast/dom/shadow/shadow-div-reflow.html
index ad47351def0e0523e2b02428f460f6604b989021..29e4f346a985f93d8511de60e99c937849fbea56 100644
--- a/LayoutTests/fast/dom/shadow/shadow-div-reflow.html
+++ b/LayoutTests/fast/dom/shadow/shadow-div-reflow.html
@@ -19,10 +19,10 @@ if (window.internals)
var host = document.getElementById("host");
var shadow1 = host.createShadowRoot();
-shadow1.innerHTML = "<div><shadow><content></content></shadow><div></div></div>";
+shadow1.innerHTML = "<div><shadow></shadow><div></div></div>";
var shadow2 = host.createShadowRoot();
shadow2.innerHTML = "<section>"
- + "<shadow><content></content></shadow>"
+ + "<shadow></shadow>"
+ "<div>second line follows.</div>"
+ "</section>";
host.focus();

Powered by Google App Engine
This is Rietveld 408576698