Index: Source/core/css/parser/CSSGrammar.y |
diff --git a/Source/core/css/parser/CSSGrammar.y b/Source/core/css/parser/CSSGrammar.y |
index 7cfe9df28ec4e789d777cb2e6ad964807f029c38..fbc2d03f2f2c67f9040853124e0323757526c6d4 100644 |
--- a/Source/core/css/parser/CSSGrammar.y |
+++ b/Source/core/css/parser/CSSGrammar.y |
@@ -39,6 +39,7 @@ |
#include "core/css/StyleRule.h" |
#include "core/css/StyleSheetContents.h" |
#include "core/dom/Document.h" |
+#include "core/frame/UseCounter.h" |
#include "wtf/FastMalloc.h" |
#include <stdlib.h> |
#include <string.h> |
@@ -862,7 +863,9 @@ keyframes: |
keyframe_name: |
IDENT |
- | STRING |
+ | STRING { |
+ parser->m_context.useCounter()->count(UseCounter::QuotedKeyframesRule); |
+ } |
; |
keyframes_rule: |