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

Unified Diff: Source/core/rendering/RenderBox.cpp

Issue 18254006: Repaint issues with vertical text which has absolute (or fixed) position specified for it. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adding entry in TestExpectations Created 6 years, 6 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/rendering/RenderBox.cpp
diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
index 4c3527982bd6fef397d2a7e4fcf1abd49391fac7..b5fec68b6cc592d7a66424884a9d2c1b56104b4a 100644
--- a/Source/core/rendering/RenderBox.cpp
+++ b/Source/core/rendering/RenderBox.cpp
@@ -2022,7 +2022,7 @@ void RenderBox::mapRectToPaintInvalidationBacking(const RenderLayerModelObject*
if (!o)
return;
- if (isWritingModeRoot() && !isOutOfFlowPositioned())
+ if (isWritingModeRoot() && style()->isFlippedBlocksWritingMode())
flipForWritingMode(rect);
LayoutPoint topLeft = rect.location();

Powered by Google App Engine
This is Rietveld 408576698