| Index: third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| index 301b91445f3f9b312605ce644b8d9f8c9efa3f53..f725f850d7aa15b541ba15bf8514a88c11ff4c31 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| @@ -49,15 +49,15 @@ CSSStyleValue* styleValueForProperty(CSSPropertyID propertyID, const CSSValue& v
|
| return nullptr;
|
| }
|
|
|
| -CSSStyleValueVector unsupportedCSSValue(const CSSValue& value)
|
| +} // namespace
|
| +
|
| +CSSStyleValueVector StyleValueFactory::unsupportedCSSValue(const CSSValue& value)
|
| {
|
| CSSStyleValueVector styleValueVector;
|
| styleValueVector.append(CSSUnsupportedStyleValue::create(value.cssText()));
|
| return styleValueVector;
|
| }
|
|
|
| -} // namespace
|
| -
|
| CSSStyleValueVector StyleValueFactory::cssValueToStyleValueVector(CSSPropertyID propertyID, const CSSValue& value)
|
| {
|
| CSSStyleValueVector styleValueVector;
|
|
|