| Index: third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/StylePropertySet.cpp b/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| index d648f0f502c5c1cb4b9fe6206c4d75edc77adfa9..f6c760f9197d1e17abffa57751b90b65a51c83c0 100644
|
| --- a/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| +++ b/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| @@ -24,7 +24,7 @@
|
|
|
| #include "core/StylePropertyShorthand.h"
|
| #include "core/css/CSSCustomPropertyDeclaration.h"
|
| -#include "core/css/CSSPrimitiveValue.h"
|
| +#include "core/css/CSSIdentifierValue.h"
|
| #include "core/css/CSSPropertyMetadata.h"
|
| #include "core/css/StylePropertySerializer.h"
|
| #include "core/css/StyleSheetContents.h"
|
| @@ -363,8 +363,8 @@ bool MutableStylePropertySet::setProperty(const CSSProperty& property,
|
| bool MutableStylePropertySet::setProperty(CSSPropertyID propertyID,
|
| CSSValueID identifier,
|
| bool important) {
|
| - setProperty(CSSProperty(
|
| - propertyID, *CSSPrimitiveValue::createIdentifier(identifier), important));
|
| + setProperty(CSSProperty(propertyID, *CSSIdentifierValue::create(identifier),
|
| + important));
|
| return true;
|
| }
|
|
|
|
|