| Index: sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/sky/engine/core/css/parser/CSSPropertyParser.cpp b/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| index 6df210f942b52dde759cfe58b9927fb4bf9cc1c6..ae8527eec70af18cc783c48c38e6065530f796ee 100644
|
| --- a/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| @@ -63,7 +63,6 @@
|
| #include "sky/engine/core/css/parser/BisonCSSParser.h"
|
| #include "sky/engine/core/css/parser/CSSParserIdioms.h"
|
| #include "sky/engine/core/css/parser/CSSParserValues.h"
|
| -#include "sky/engine/core/frame/UseCounter.h"
|
| #include "sky/engine/core/html/parser/HTMLParserIdioms.h"
|
| #include "sky/engine/platform/FloatConversion.h"
|
| #include "sky/engine/wtf/BitArray.h"
|
| @@ -401,10 +400,6 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId)
|
| if (!isInternalPropertyAndValueParsingEnabledForMode(m_context.mode()) && isInternalProperty(propId))
|
| return false;
|
|
|
| - // We don't count the UA style sheet in our statistics.
|
| - if (m_context.useCounter())
|
| - m_context.useCounter()->count(m_context, propId);
|
| -
|
| if (!m_valueList)
|
| return false;
|
|
|
| @@ -603,12 +598,6 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId)
|
| return false;
|
| value = m_valueList->current();
|
| }
|
| - if (value && m_context.useCounter()) {
|
| - if (value->id == CSSValueWebkitZoomIn)
|
| - m_context.useCounter()->count(UseCounter::PrefixedCursorZoomIn);
|
| - else if (value->id == CSSValueWebkitZoomOut)
|
| - m_context.useCounter()->count(UseCounter::PrefixedCursorZoomOut);
|
| - }
|
| if (list) {
|
| if (!value)
|
| return false;
|
|
|