| Index: Source/core/css/StylePropertySet.cpp
|
| diff --git a/Source/core/css/StylePropertySet.cpp b/Source/core/css/StylePropertySet.cpp
|
| index 310c2a543c87b6d3dad8f560b3fe8410f56ad5d3..bcbf560737553f1cb1eb87d410afca9739a0fba4 100644
|
| --- a/Source/core/css/StylePropertySet.cpp
|
| +++ b/Source/core/css/StylePropertySet.cpp
|
| @@ -308,11 +308,11 @@ bool MutableStylePropertySet::addParsedProperties(const WillBeHeapVector<CSSProp
|
| bool changed = false;
|
| m_propertyVector.reserveCapacity(m_propertyVector.size() + properties.size());
|
| for (unsigned i = 0; i < properties.size(); ++i)
|
| - changed |= addParsedProperty(properties[i]);
|
| + changed |= setProperty(properties[i]);
|
| return changed;
|
| }
|
|
|
| -bool MutableStylePropertySet::addParsedProperty(const CSSProperty& property)
|
| +bool MutableStylePropertySet::addRespectingCascade(const CSSProperty& property)
|
| {
|
| // Only add properties that have no !important counterpart present
|
| if (!propertyIsImportant(property.id()) || property.isImportant())
|
|
|