| Index: third_party/WebKit/Source/core/css/cssom/InlineStylePropertyMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/InlineStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/InlineStylePropertyMap.cpp
|
| index edcc24f27a5ad1b347a3db02bbcf382fcdc0a92e..49542ca26b65beff02e5f2eaf7610e6b8976cc07 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/InlineStylePropertyMap.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/InlineStylePropertyMap.cpp
|
| @@ -72,10 +72,11 @@ CSSStyleValueVector InlineStylePropertyMap::getAllInternal(
|
| }
|
|
|
| CSSStyleValueVector InlineStylePropertyMap::getAllInternal(
|
| - AtomicString customPropertyName) {
|
| + String customPropertyName) {
|
| + // TODO(meade): Let's avoid interning strings here if they're incorrect.
|
| const CSSValue* cssValue =
|
| m_ownerElement->ensureMutableInlineStyle().getPropertyCSSValue(
|
| - customPropertyName);
|
| + AtomicString(customPropertyName));
|
| if (!cssValue)
|
| return CSSStyleValueVector();
|
|
|
|
|