Index: third_party/WebKit/Source/core/dom/Document.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp |
index c2d02197b1328c8cb0d5e974fd28805256301c87..0306435f91d7075ec244bd5b72aff8cd0d04185c 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.cpp |
+++ b/third_party/WebKit/Source/core/dom/Document.cpp |
@@ -1995,7 +1995,7 @@ PassRefPtr<ComputedStyle> Document::styleForPage(int pageIndex) |
bool Document::isPageBoxVisible(int pageIndex) |
{ |
- return styleForPage(pageIndex)->visibility() != HIDDEN; // display property doesn't apply to @page. |
+ return styleForPage(pageIndex)->visibility() != EVisibility::Hidden; // display property doesn't apply to @page. |
} |
void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) |