| Index: third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLToken.h b/third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| index 97311d45034c93af7058e8c52c237205f177f0ed..26374922c09c073e313d59a8e557b9bf71519611 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLToken.h
|
| @@ -313,7 +313,7 @@ class HTMLToken {
|
| void addNewAttribute() {
|
| ASSERT(m_type == StartTag || m_type == EndTag);
|
| m_attributes.grow(m_attributes.size() + 1);
|
| - m_currentAttribute = &m_attributes.last();
|
| + m_currentAttribute = &m_attributes.back();
|
| m_currentAttribute->mutableNameRange().clear();
|
| m_currentAttribute->mutableValueRange().clear();
|
| }
|
|
|