| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| index 96b6d9aeb3774c101f47404302d6b0386ec0a5dd..9d3e97215055c26aa3306c340e496bc8e39c3667 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
|
| @@ -195,7 +195,7 @@ void V8CSSStyleDeclaration::namedPropertyGetterCustom(v8::Local<v8::Name> name,
|
|
|
| CSSStyleDeclaration* impl = V8CSSStyleDeclaration::toImpl(info.Holder());
|
| // TODO(leviw): This API doesn't support custom properties.
|
| - CSSValue* cssValue = impl->getPropertyCSSValueInternal(resolvedProperty);
|
| + const CSSValue* cssValue = impl->getPropertyCSSValueInternal(resolvedProperty);
|
| if (cssValue) {
|
| v8SetReturnValueStringOrNull(info, cssValue->cssText(), info.GetIsolate());
|
| return;
|
|
|