Index: third_party/WebKit/Source/core/testing/Internals.cpp |
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp |
index dc9440c2e30d3484e279a8c4a977016f5c3e3e2e..cef66ee97697c164ab26781a17f789853879debe 100644 |
--- a/third_party/WebKit/Source/core/testing/Internals.cpp |
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp |
@@ -3043,6 +3043,11 @@ bool Internals::isCSSPropertyUseCounted(Document* document, |
return UseCounter::isCounted(*document, propertyName); |
} |
+bool Internals::isAnimatedCSSPropertyUseCounted(Document* document, |
+ const String& propertyName) { |
+ return UseCounter::isCountedAnimatedCSS(*document, propertyName); |
+} |
+ |
ScriptPromise Internals::observeUseCounter(ScriptState* scriptState, |
Document* document, |
uint32_t feature) { |