Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(706)

Unified Diff: Source/core/frame/FrameView.cpp

Issue 669803002: Optimize for horizontal writing mode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: w compile fix Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 146a5adcc6321f4e45f6827630502395771054a9..9f26091bcd062824d2712a7b6e880ef3d30da11a 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -2877,7 +2877,7 @@ bool FrameView::isFlippedDocument() const
if (!renderView)
return false;
- return renderView->style()->isFlippedBlocksWritingMode();
+ return renderView->hasFlippedBlocksWritingMode();
}
bool FrameView::scrollbarsDisabled() const

Powered by Google App Engine
This is Rietveld 408576698