| Index: Source/core/css/parser/CSSSelectorParser.cpp
|
| diff --git a/Source/core/css/parser/CSSSelectorParser.cpp b/Source/core/css/parser/CSSSelectorParser.cpp
|
| index 418544ee70e32a76acfff019803f5a167fe22114..e9d78a6b2b5f9c1d94301f2572bc321e3f2bd4cb 100644
|
| --- a/Source/core/css/parser/CSSSelectorParser.cpp
|
| +++ b/Source/core/css/parser/CSSSelectorParser.cpp
|
| @@ -24,9 +24,6 @@ static void recordSelectorStats(const CSSParserContext& context, const CSSSelect
|
| case CSSSelector::PseudoUnresolved:
|
| feature = UseCounter::CSSSelectorPseudoUnresolved;
|
| break;
|
| - case CSSSelector::PseudoShadow:
|
| - feature = UseCounter::CSSSelectorPseudoShadow;
|
| - break;
|
| case CSSSelector::PseudoContent:
|
| feature = UseCounter::CSSSelectorPseudoContent;
|
| break;
|
| @@ -50,8 +47,6 @@ static void recordSelectorStats(const CSSParserContext& context, const CSSSelect
|
| }
|
| if (feature != UseCounter::NumberOfFeatures)
|
| context.useCounter()->count(feature);
|
| - if (current->relation() == CSSSelector::ShadowDeep)
|
| - context.useCounter()->count(UseCounter::CSSDeepCombinator);
|
| if (current->selectorList())
|
| recordSelectorStats(context, *current->selectorList());
|
| }
|
|
|