| Index: third_party/WebKit/Source/core/paint/BlockFlowPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/BlockFlowPainter.cpp b/third_party/WebKit/Source/core/paint/BlockFlowPainter.cpp
|
| index bc8098c7036efd44201d6234e6cd74dd00169021..ecc3e67b6d82dbe9b469532517bdb395c9b029bf 100644
|
| --- a/third_party/WebKit/Source/core/paint/BlockFlowPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/BlockFlowPainter.cpp
|
| @@ -46,6 +46,9 @@ void BlockFlowPainter::paintFloats(const PaintInfo& paintInfo, const LayoutPoint
|
| continue;
|
|
|
| const LayoutBox* floatingLayoutObject = floatingObject->layoutObject();
|
| + if (floatingLayoutObject->hasSelfPaintingLayer())
|
| + continue;
|
| +
|
| // FIXME: LayoutPoint version of xPositionForFloatIncludingMargin would make this much cleaner.
|
| LayoutPoint childPoint = m_layoutBlockFlow.flipFloatForWritingModeForChild(
|
| *floatingObject, LayoutPoint(paintOffset.x()
|
|
|