| Index: Source/core/editing/EditingStyle.cpp
|
| diff --git a/Source/core/editing/EditingStyle.cpp b/Source/core/editing/EditingStyle.cpp
|
| index b8b2e18761285c9f1d642d38d4672c6cca26094d..828a2d335b97b60af0ce12ae1f2d4b95266f8b4e 100644
|
| --- a/Source/core/editing/EditingStyle.cpp
|
| +++ b/Source/core/editing/EditingStyle.cpp
|
| @@ -1136,8 +1136,8 @@ static PassRefPtrWillBeRawPtr<MutableStylePropertySet> styleFromMatchedRulesForE
|
| RefPtrWillBeRawPtr<MutableStylePropertySet> style = MutableStylePropertySet::create();
|
| RefPtrWillBeRawPtr<StyleRuleList> matchedRules = element->document().ensureStyleResolver().styleRulesForElement(element, rulesToInclude);
|
| if (matchedRules) {
|
| - for (unsigned i = 0; i < matchedRules->m_list.size(); ++i)
|
| - style->mergeAndOverrideOnConflict(&matchedRules->m_list[i]->properties());
|
| + for (unsigned i = 0; i < matchedRules->size(); ++i)
|
| + style->mergeAndOverrideOnConflict(&matchedRules->at(i)->properties());
|
| }
|
| return style.release();
|
| }
|
|
|