Index: Source/core/css/CSSGrammar.y |
diff --git a/Source/core/css/CSSGrammar.y b/Source/core/css/CSSGrammar.y |
index aeb336a46ad295e47009a58072a49da1e7dd424f..6b32b9553b41fbfb636fd4279fddaac51c983dc7 100644 |
--- a/Source/core/css/CSSGrammar.y |
+++ b/Source/core/css/CSSGrammar.y |
@@ -1046,12 +1046,8 @@ combinator: |
'+' maybe_space { $$ = CSSSelector::DirectAdjacent; } |
| '~' maybe_space { $$ = CSSSelector::IndirectAdjacent; } |
| '>' maybe_space { $$ = CSSSelector::Child; } |
- // FIXME: implement named combinator and replace the following /shadow/, /shadow-child/ and |
- // /deep/ with named combinator's implementation. |
| '/' IDENT '/' maybe_space { |
- if ($2.equalIgnoringCase("shadow")) |
- $$ = CSSSelector::Shadow; |
- else if ($2.equalIgnoringCase("deep")) |
+ if ($2.equalIgnoringCase("deep")) |
$$ = CSSSelector::ShadowDeep; |
else |
YYERROR; |