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