| Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 560cdf9049e3e82e25b1c3ec8cdf89104ace64f8..93b0508ee69d4272f808302404a08e48d5289130 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -201,7 +201,7 @@ inline CSSPrimitiveValue* zoomAdjustedPixelValue(double value,
|
|
|
| void logUnimplementedPropertyID(CSSPropertyID propertyID) {
|
| DEFINE_STATIC_LOCAL(HashSet<CSSPropertyID>, propertyIDSet, ());
|
| - if (!propertyIDSet.add(propertyID).isNewEntry)
|
| + if (!propertyIDSet.insert(propertyID).isNewEntry)
|
| return;
|
|
|
| DLOG(ERROR) << "Blink does not yet implement getComputedStyle for '"
|
|
|