| Index: third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp b/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
|
| index fc5e403476c3beab92fc69746e3074f0401f7558..f089a74055dd45bd33c04b029b1d654782091102 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleInheritedVariables.cpp
|
| @@ -22,7 +22,7 @@ bool StyleInheritedVariables::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;
|
| }
|
|
|