| Index: third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp b/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
|
| index 5a0ed1b500457e1f927cb557bafb45db003c4ad8..740eb0e57540ad4c586e71a4f55cbe608e9f6d5a 100644
|
| --- a/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/iterators/FullyClippedStateStack.cpp
|
| @@ -77,7 +77,7 @@ void FullyClippedStateStackAlgorithm<Strategy>::setUpFullyClippedStack(
|
| HeapVector<Member<ContainerNode>, 100> ancestry;
|
| for (ContainerNode* parent = parentCrossingShadowBoundaries<Strategy>(*node);
|
| parent; parent = parentCrossingShadowBoundaries<Strategy>(*parent))
|
| - ancestry.append(parent);
|
| + ancestry.push_back(parent);
|
|
|
| // Call pushFullyClippedState on each node starting with the earliest
|
| // ancestor.
|
|
|