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

Unified Diff: LayoutTests/fast/dom/shadow/shadow-insertion-point-rendering-multiple-shadow-roots.html

Issue 137993003: Revert the feature of the <shadow> element as 'a function call' to the previous behavior. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update LayoutTests/TestExpectations Created 6 years, 11 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-insertion-point-rendering-multiple-shadow-roots.html
diff --git a/LayoutTests/fast/dom/shadow/shadow-insertion-point-rendering-multiple-shadow-roots.html b/LayoutTests/fast/dom/shadow/shadow-insertion-point-rendering-multiple-shadow-roots.html
index 17b55782dc87c26f8b8c51df65851b8b552b6fbf..3a496ca00ee82f997060899345f663f2a9b64cac 100644
--- a/LayoutTests/fast/dom/shadow/shadow-insertion-point-rendering-multiple-shadow-roots.html
+++ b/LayoutTests/fast/dom/shadow/shadow-insertion-point-rendering-multiple-shadow-roots.html
@@ -16,20 +16,7 @@ function createSpanWithText(text) {
}
var testcases = [
- description('A shadow element with a content element'),
- createDOM('div', {},
- createSpanWithText("host-child"),
- createShadowRoot(
- createSpanWithText("before0"),
- createDOM("content", {}),
- createSpanWithText("after0")),
- createShadowRoot(
- createSpanWithText("before1"),
- createDOM("shadow", {},
- createDOM("content", {})),
- createSpanWithText("after1"))),
-
- description('A shadow element without a content element'),
+ description('A shadow element without an element'),
createDOM('div', {},
createSpanWithText("host-child"),
createShadowRoot(
@@ -41,7 +28,7 @@ var testcases = [
createDOM("shadow", {}),
createSpanWithText("after1"))),
- description('A shadow element with a parameter'),
+ description('A shadow element with an element'),
createDOM('div', {},
createSpanWithText("host-child"),
createShadowRoot(
@@ -54,7 +41,7 @@ var testcases = [
createSpanWithText("shadow-child")),
createSpanWithText("after1"))),
- description('A shadow element with a content element and a parameter'),
+ description('A shadow element with a content element and an element'),
createDOM('div', {},
createSpanWithText("host-child"),
createShadowRoot(

Powered by Google App Engine
This is Rietveld 408576698