| Index: third_party/WebKit/Source/core/events/TreeScopeEventContext.h
|
| diff --git a/third_party/WebKit/Source/core/events/TreeScopeEventContext.h b/third_party/WebKit/Source/core/events/TreeScopeEventContext.h
|
| index eb37b802f0a2070682dbbd764c13dbd2d241cbcc..cf084ba1fff3a519cdcc33f748e07a08dd22b087 100644
|
| --- a/third_party/WebKit/Source/core/events/TreeScopeEventContext.h
|
| +++ b/third_party/WebKit/Source/core/events/TreeScopeEventContext.h
|
| @@ -71,7 +71,7 @@ class CORE_EXPORT TreeScopeEventContext final
|
| #if DCHECK_IS_ON()
|
| bool isExclusivePartOf(const TreeScopeEventContext&) const;
|
| #endif
|
| - void addChild(TreeScopeEventContext& child) { m_children.append(&child); }
|
| + void addChild(TreeScopeEventContext& child) { m_children.push_back(&child); }
|
|
|
| // For ancestor-descendant relationship check in O(1).
|
| // Preprocessing takes O(N).
|
|
|