| Index: third_party/WebKit/Source/core/style/StyleNonInheritedVariables.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.cpp b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.cpp
|
| index e9551a9c89d2b23e046452204fd679a69042d6f8..89f0267aa1648a4b3fb3f6762b630abed5c60b2a 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.cpp
|
| @@ -14,7 +14,7 @@ bool StyleNonInheritedVariables::operator==(
|
| return false;
|
|
|
| for (const auto& iter : m_data) {
|
| - RefPtr<CSSVariableData> otherData = other.m_data.get(iter.key);
|
| + RefPtr<CSSVariableData> otherData = other.m_data.at(iter.key);
|
| if (!dataEquivalent(iter.value, otherData))
|
| return false;
|
| }
|
| @@ -24,7 +24,7 @@ bool StyleNonInheritedVariables::operator==(
|
|
|
| CSSVariableData* StyleNonInheritedVariables::getVariable(
|
| const AtomicString& name) const {
|
| - return m_data.get(name);
|
| + return m_data.at(name);
|
| }
|
|
|
| void StyleNonInheritedVariables::setRegisteredVariable(
|
|
|