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

Unified Diff: LayoutTests/fast/dom/shadow/content-pseudo-element-with-hat.html

Issue 183803016: Rename ^ and ^^ combinator to /shadow-all/ and /shadow-deep/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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/content-pseudo-element-with-hat.html
diff --git a/LayoutTests/fast/dom/shadow/content-pseudo-element-with-hat.html b/LayoutTests/fast/dom/shadow/content-pseudo-element-with-hat.html
index dc197f0c1a126208bc7616700152ed154caa3300..052d1bfb67e81c04fa8d59eeeb96c6bc68512aa1 100644
--- a/LayoutTests/fast/dom/shadow/content-pseudo-element-with-hat.html
+++ b/LayoutTests/fast/dom/shadow/content-pseudo-element-with-hat.html
@@ -9,7 +9,7 @@
<pre id="console"></pre>
</body>
<script>
-description("Test for ::content with ^ and :host.");
+description("Test for ::content with /shadow-all/ and :host.");
var sandbox = document.getElementById('sandbox');
@@ -23,7 +23,7 @@ sandbox.appendChild(
createShadowRoot(
createDOM('style', {},
document.createTextNode(
- ':host(#host1) ^ #content1::content > .content { color: green; }')),
+ ':host(#host1) /shadow-all/ #content1::content > .content { color: green; }')),
createDOM('div', {},
createDOM('div', {'id': 'host2'},
createShadowRoot(
@@ -42,7 +42,7 @@ sandbox.appendChild(
createShadowRoot(
createDOM('style', {},
document.createTextNode(
- '#host2 ^ #content2::content > #parentOfContent1 > #content1::content > .content { color: green; }')),
+ '#host2 /shadow-all/ #content2::content > #parentOfContent1 > #content1::content > .content { color: green; }')),
createDOM('div', {},
createDOM('div', {'id': 'host2'},
createShadowRoot(
@@ -61,7 +61,7 @@ sandbox.appendChild(
createShadowRoot(
createDOM('style', {},
document.createTextNode(
- ':host ^ #content2::content > #shadow1::content > #content1::content > .content { color: red; }')),
+ ':host /shadow-all/ #content2::content > #shadow1::content > #content1::content > .content { color: red; }')),
createDOM('content', {'id': 'content1'})),
createShadowRoot(
createDOM('div', {},
@@ -82,7 +82,7 @@ sandbox.appendChild(
createShadowRoot(
createDOM('style', {},
document.createTextNode(
- ':host ^ #content2::content > #parentOfContent1 > #content1::content > .content { color: red; }')),
+ ':host /shadow-all/ #content2::content > #parentOfContent1 > #content1::content > .content { color: red; }')),
createDOM('div', {},
createDOM('div', {'id': 'host2'},
createShadowRoot(

Powered by Google App Engine
This is Rietveld 408576698