Created
March 12, 2020 16:08
-
-
Save pulkomandy/2f4aef5e9d71386157569624bccfe472 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/WebCore/rendering/RenderBlock.cpp b/Source/WebCore/rendering/RenderBlock.cpp | |
index ceacb85c0b2..63ea91232ab 100644 | |
--- a/Source/WebCore/rendering/RenderBlock.cpp | |
+++ b/Source/WebCore/rendering/RenderBlock.cpp | |
@@ -1184,7 +1184,7 @@ bool RenderBlock::paintChild(RenderBox& child, PaintInfo& paintInfo, const Layou | |
} | |
LayoutPoint childPoint = flipForWritingModeForChild(&child, paintOffset); | |
- if (!child.hasSelfPaintingLayer() && !child.isFloating()) { | |
+ if (true || !child.hasSelfPaintingLayer() && !child.isFloating()) { | |
if (paintType == PaintAsInlineBlock) | |
child.paintAsInlineBlock(paintInfoForChild, childPoint); | |
else |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment