Skip to content

Instantly share code, notes, and snippets.

@pulkomandy
Created March 12, 2020 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pulkomandy/2f4aef5e9d71386157569624bccfe472 to your computer and use it in GitHub Desktop.
Save pulkomandy/2f4aef5e9d71386157569624bccfe472 to your computer and use it in GitHub Desktop.
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