| Index: third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| index 27d5cbfc162700479ecc896dc053fa2dce4654d4..eaf9dcf7b6a762ff65b025f1a54bdfb01465c87b 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| @@ -12,11 +12,11 @@ FilteredComputedStylePropertyMap::FilteredComputedStylePropertyMap(
|
| const Vector<AtomicString>& customProperties)
|
| : ComputedStylePropertyMap(computedStyleDeclaration) {
|
| for (const auto& nativeProperty : nativeProperties) {
|
| - m_nativeProperties.add(nativeProperty);
|
| + m_nativeProperties.insert(nativeProperty);
|
| }
|
|
|
| for (const auto& customProperty : customProperties) {
|
| - m_customProperties.add(customProperty);
|
| + m_customProperties.insert(customProperty);
|
| }
|
| }
|
|
|
|
|