| Index: Source/core/editing/ApplyStyleCommand.cpp
|
| diff --git a/Source/core/editing/ApplyStyleCommand.cpp b/Source/core/editing/ApplyStyleCommand.cpp
|
| index c09fe862d61560d57059d30632e45f5dc38ef3a5..ebd8e43e298d71635c0bcaa32094de03af706c15 100644
|
| --- a/Source/core/editing/ApplyStyleCommand.cpp
|
| +++ b/Source/core/editing/ApplyStyleCommand.cpp
|
| @@ -1047,8 +1047,8 @@ void ApplyStyleCommand::pushDownInlineStyleAroundNode(EditingStyle* style, Node*
|
| CollectionRoot<Vector<Member<Element> > > elementsToPushDown;
|
| while (current && current != targetNode && current->contains(adoptRawResult(targetNode))) {
|
| HandleScope scope;
|
| - CollectionRoot<NodeVector> currentChildren;
|
| - getChildNodes(current.raw(), *currentChildren);
|
| + NodeVector currentChildren;
|
| + getChildNodes(current.raw(), currentChildren);
|
| Handle<StyledElement> styledElement;
|
| if (current->isStyledElement() && isStyledInlineElementToRemove(toElement(current))) {
|
| styledElement = Handle<StyledElement>::cast(current);
|
|
|