| Index: third_party/WebKit/Source/core/css/cssom/StylePropertyMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.cpp
|
| index 30e7aff4c3599fac013147251f270344e189f2b3..c33406c973e8998c1617e5931459037d39f30c35 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.cpp
|
| @@ -55,7 +55,7 @@ CSSStyleValue* StylePropertyMap::get(const String& propertyName, ExceptionState&
|
| return nullptr;
|
| }
|
|
|
| - CSSStyleValueVector styleVector = getAll(propertyID);
|
| + CSSStyleValueVector styleVector = getAllInternal(propertyID);
|
| if (styleVector.isEmpty())
|
| return nullptr;
|
|
|
| @@ -66,7 +66,7 @@ CSSStyleValueVector StylePropertyMap::getAll(const String& propertyName, Excepti
|
| {
|
| CSSPropertyID propertyID = cssPropertyID(propertyName);
|
| if (propertyID != CSSPropertyInvalid)
|
| - return getAll(propertyID);
|
| + return getAllInternal(propertyID);
|
|
|
| // TODO(meade): Handle custom properties here.
|
| exceptionState.throwTypeError("Invalid propertyName: " + propertyName);
|
| @@ -77,7 +77,7 @@ bool StylePropertyMap::has(const String& propertyName, ExceptionState& exception
|
| {
|
| CSSPropertyID propertyID = cssPropertyID(propertyName);
|
| if (propertyID != CSSPropertyInvalid)
|
| - return !getAll(propertyID).isEmpty();
|
| + return !getAllInternal(propertyID).isEmpty();
|
|
|
| // TODO(meade): Handle custom properties here.
|
| exceptionState.throwTypeError("Invalid propertyName: " + propertyName);
|
|
|