| Index: third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp b/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| index 7b5d368487a308e5489ae00e68c51d6d808be876..c91f8e3098dfad3646cafe17fa54b1c15b2bea7e 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| @@ -109,7 +109,7 @@ void HTMLFormattingElementList::clearToLastMarker() {
|
| // http://www.whatwg.org/specs/web-apps/current-work/multipage/parsing.html#clear-the-list-of-active-formatting-elements-up-to-the-last-marker
|
| while (m_entries.size()) {
|
| bool shouldStop = m_entries.last().isMarker();
|
| - m_entries.removeLast();
|
| + m_entries.pop_back();
|
| if (shouldStop)
|
| break;
|
| }
|
|
|