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

Unified Diff: LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html

Issue 210713002: Implement ::shadow pseudo element and replace /shadow/ with ::shadow. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed patch conflict Created 6 years, 9 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/dynamically-added-cat-hat-rules.html
diff --git a/LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html b/LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html
index b443d82622983f4ffcbabf082eb5b51ba56754ef..7b8e4a89946e4a49c0235ec5a20902f1bc147b45 100644
--- a/LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html
+++ b/LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html
@@ -38,8 +38,8 @@ sandbox.appendChild(
document.body.offsetLeft;
var style = document.createElement('style');
-style.innerHTML = 'div /shadow/ .foo { background: green; }'
- + 'div /shadow/ #target2 { background: green; }'
+style.innerHTML = 'div::shadow .foo { background: green; }'
+ + 'div::shadow #target2 { background: green; }'
+ 'div /deep/ .bar { background: blue; }'
+ 'div /deep/ #target4 { background: blue; }';
document.body.appendChild(style);

Powered by Google App Engine
This is Rietveld 408576698