| Index: third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLDocument.cpp b/third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| index 358922baa38f90fd878572b784aeaed5cc82c6f4..e100e978ee85aff45e81b91e6698fe8a8761e80f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLDocument.cpp
|
| @@ -210,7 +210,7 @@ static HashSet<StringImpl*>* createHtmlCaseInsensitiveAttributesSet() {
|
|
|
| attrSet->reserveCapacityForSize(WTF_ARRAY_LENGTH(caseInsensitiveAttributes));
|
| for (const QualifiedName* attr : caseInsensitiveAttributes)
|
| - attrSet->add(attr->localName().impl());
|
| + attrSet->insert(attr->localName().impl());
|
|
|
| return attrSet;
|
| }
|
|
|