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

Unified Diff: LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent.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/nested-reprojection-inconsistent.html
diff --git a/LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent.html b/LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent.html
index 3a3cc673118c6727be49c8bea6fac6c0a9b69e68..7b58b1bb7d528577a915ccc04bc15950ec5d2872 100644
--- a/LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent.html
+++ b/LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent.html
@@ -13,19 +13,19 @@
jsTestIsAsync = true;
var shadowRoot11 = host1.createShadowRoot();
-shadowRoot11.innerHTML = '<div></div><shadow><content></content></shadow>';
+shadowRoot11.innerHTML = '<div></div><shadow></shadow>';
var div1 = shadowRoot11.firstChild;
var shadow1 = shadowRoot11.lastChild;
var shadowRoot12 = host1.createShadowRoot();
-shadowRoot12.innerHTML = '<div><shadow><content></content></shadow></div>';
+shadowRoot12.innerHTML = '<div><shadow></shadow></div>';
var host2 = shadowRoot12.firstChild;
var shadowRoot21 = host2.createShadowRoot();
shadowRoot21.innerHTML = '<content></content>';
var shadowRoot22 = host2.createShadowRoot();
-shadowRoot22.innerHTML = '<div><shadow><content></content></shadow></div>';
+shadowRoot22.innerHTML = '<div><shadow></shadow></div>';
var host3 = shadowRoot22.firstChild;
var shadowRoot31 = host3.createShadowRoot();

Powered by Google App Engine
This is Rietveld 408576698