| Index: third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| index 93be952e3cdc4455f546b926a4ba3ca096cb73ed..e693229390e180eb26267aa1af0cb64bbd7f0d9d 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp
|
| @@ -692,6 +692,8 @@ void CSSParserImpl::consumeDeclaration(CSSParserTokenRange range, StyleRule::Typ
|
| ASSERT(range.peek().type() == IdentToken);
|
| const CSSParserToken& token = range.consumeIncludingWhitespace();
|
| CSSPropertyID unresolvedProperty = token.parseAsUnresolvedCSSPropertyID();
|
| + if (m_styleSheet && m_styleSheet->singleOwnerDocument())
|
| + UseCounter::countDeprecation(m_styleSheet->singleOwnerDocument()->frame(), unresolvedProperty);
|
| if (range.consume().type() != ColonToken)
|
| return; // Parse error
|
|
|
|
|