| Index: third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp b/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| index 69884a3469dd94fc091297a6d3cd0d7a454eb545..4381e3fb6ca00fe279fcbc8890de3d09ab4717e2 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.cpp
|
| @@ -63,7 +63,7 @@ bool isVisible(const Element& element) {
|
| const ComputedStyle* style = element.computedStyle();
|
| if (!style)
|
| return false;
|
| - return (style->display() != EDisplay::None &&
|
| + return (style->display() != EDisplay::kNone &&
|
| style->visibility() != EVisibility::kHidden && style->opacity() != 0);
|
| }
|
|
|
|
|