| Index: Source/core/editing/EditingStyle.cpp
|
| diff --git a/Source/core/editing/EditingStyle.cpp b/Source/core/editing/EditingStyle.cpp
|
| index eaf89f1bad5b479f2f1cbcba14e868b6b6e98f37..6f064824d50c52604c130d6fd308d863dfe1a343 100644
|
| --- a/Source/core/editing/EditingStyle.cpp
|
| +++ b/Source/core/editing/EditingStyle.cpp
|
| @@ -116,7 +116,7 @@ static const Vector<CSSPropertyID>& inheritableEditingProperties()
|
| if (properties.isEmpty()) {
|
| RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(staticEditingProperties, WTF_ARRAY_LENGTH(staticEditingProperties), properties);
|
| for (size_t index = 0; index < properties.size();) {
|
| - if (!CSSProperty::isInheritedProperty(properties[index])) {
|
| + if (!CSSPropertyMetadata::isInheritedProperty(properties[index])) {
|
| properties.remove(index);
|
| continue;
|
| }
|
|
|