| 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 b64438310952189c839cc91f4cd6784215ab5d59..fa67b0f53c1c990df26643b7459cc3a1ebd117a6 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -2490,6 +2490,11 @@ bool Internals::isUseCounted(Document* document, int useCounterId)
|
| return UseCounter::isCounted(*document, static_cast<UseCounter::Feature>(useCounterId));
|
| }
|
|
|
| +bool Internals::isCSSPropertyUseCounted(Document* document, int useCounterId)
|
| +{
|
| + return UseCounter::isCounted(*document, static_cast<CSSPropertyID>(useCounterId));
|
| +}
|
| +
|
| String Internals::unscopeableAttribute()
|
| {
|
| return "unscopeableAttribute";
|
|
|