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

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

Issue 210813002: Rename /shadow-deep/ combinator to /deep/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 34cdc6d2d35118337ca2ac875fed87599a1728c8..b443d82622983f4ffcbabf082eb5b51ba56754ef 100644
--- a/LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html
+++ b/LayoutTests/fast/dom/shadow/dynamically-added-cat-hat-rules.html
@@ -40,8 +40,8 @@ document.body.offsetLeft;
var style = document.createElement('style');
style.innerHTML = 'div /shadow/ .foo { background: green; }'
+ 'div /shadow/ #target2 { background: green; }'
- + 'div /shadow-deep/ .bar { background: blue; }'
- + 'div /shadow-deep/ #target4 { background: blue; }';
+ + 'div /deep/ .bar { background: blue; }'
+ + 'div /deep/ #target4 { background: blue; }';
document.body.appendChild(style);
backgroundColorShouldBe('host/target1', 'rgb(0, 128, 0)');

Powered by Google App Engine
This is Rietveld 408576698