| Index: third_party/WebKit/Source/core/xml/XPathStep.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathStep.cpp b/third_party/WebKit/Source/core/xml/XPathStep.cpp
|
| index 3872240c594c11e4a73f6b0a945a62f1c4811f6e..b9c8d6ab4e788e57ebb6a72c93767dd4c805b60b 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathStep.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/XPathStep.cpp
|
| @@ -69,9 +69,9 @@ void Step::optimize() {
|
| if ((!predicate->isContextPositionSensitive() ||
|
| nodeTest().mergedPredicates().isEmpty()) &&
|
| !predicate->isContextSizeSensitive() && remainingPredicates.isEmpty()) {
|
| - nodeTest().mergedPredicates().append(predicate);
|
| + nodeTest().mergedPredicates().push_back(predicate);
|
| } else {
|
| - remainingPredicates.append(predicate);
|
| + remainingPredicates.push_back(predicate);
|
| }
|
| }
|
| swap(remainingPredicates, m_predicates);
|
|
|