| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 6650efd9175d32997a4f848366b776ab94e09e8c..28a62290b2db492170038e2ca638dcc44bc1438b 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -38,6 +38,7 @@
|
| #include "core/animation/AnimationTimeline.h"
|
| #include "core/animation/CustomCompositorAnimations.h"
|
| #include "core/animation/css/CSSAnimations.h"
|
| +#include "core/css/CSSIdentifierValue.h"
|
| #include "core/css/CSSImageValue.h"
|
| #include "core/css/CSSPrimitiveValue.h"
|
| #include "core/css/CSSStyleSheet.h"
|
| @@ -3659,7 +3660,7 @@ void Element::inlineStyleChanged()
|
|
|
| void Element::setInlineStyleProperty(CSSPropertyID propertyID, CSSValueID identifier, bool important)
|
| {
|
| - setInlineStyleProperty(propertyID, CSSPrimitiveValue::createIdentifier(identifier), important);
|
| + setInlineStyleProperty(propertyID, CSSIdentifierValue::create(identifier), important);
|
| }
|
|
|
| void Element::setInlineStyleProperty(CSSPropertyID propertyID, double value, CSSPrimitiveValue::UnitType unit, bool important)
|
| @@ -3715,7 +3716,7 @@ void Element::updatePresentationAttributeStyle()
|
| void Element::addPropertyToPresentationAttributeStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, CSSValueID identifier)
|
| {
|
| DCHECK(isStyledElement());
|
| - style->setProperty(propertyID, *CSSPrimitiveValue::createIdentifier(identifier));
|
| + style->setProperty(propertyID, *CSSIdentifierValue::create(identifier));
|
| }
|
|
|
| void Element::addPropertyToPresentationAttributeStyle(MutableStylePropertySet* style, CSSPropertyID propertyID, double value, CSSPrimitiveValue::UnitType unit)
|
|
|