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 73f1c21301bedf73500055e394d7bbb91b92e568..27e7506edf87bc6378e355d7120931768233f183 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.cpp |
+++ b/third_party/WebKit/Source/core/dom/Document.cpp |
@@ -1996,7 +1996,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) |