| Index: third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathPath.cpp b/third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| index f5eb17ae3e10a85ce183bc8490be4a0efa1a815e..52cd1f95af5f1a74e2f7b49009fd938a30c01a1b 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/XPathPath.cpp
|
| @@ -161,7 +161,7 @@ void LocationPath::appendStep(Step* step) {
|
| if (stepCount && optimizeStepPair(m_steps[stepCount - 1], step))
|
| return;
|
| step->optimize();
|
| - m_steps.append(step);
|
| + m_steps.push_back(step);
|
| }
|
|
|
| void LocationPath::insertFirstStep(Step* step) {
|
|
|