| Index: third_party/WebKit/Source/core/css/CSSValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValue.cpp b/third_party/WebKit/Source/core/css/CSSValue.cpp
|
| index f2b29069e1e6a998c5fdae8d84ade4a0b1600229..43949948003b40ead6a1624a31a7e367e3f94a99 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSValue.cpp
|
| @@ -71,11 +71,6 @@ struct SameSizeAsCSSValue : public GarbageCollectedFinalized<SameSizeAsCSSValue>
|
|
|
| static_assert(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), "CSSValue should stay small");
|
|
|
| -bool CSSValue::isImplicitInitialValue() const
|
| -{
|
| - return m_classType == InitialClass && toCSSInitialValue(this)->isImplicit();
|
| -}
|
| -
|
| bool CSSValue::hasFailedOrCanceledSubresources() const
|
| {
|
| if (isValueList())
|
| @@ -100,6 +95,8 @@ inline static bool compareCSSValues(const CSSValue& first, const CSSValue& secon
|
|
|
| bool CSSValue::equals(const CSSValue& other) const
|
| {
|
| + if (m_implicit != other.m_implicit)
|
| + return false;
|
| if (m_classType == other.m_classType) {
|
| switch (getClassType()) {
|
| case BasicShapeCircleClass:
|
|
|