| Index: Source/core/paint/FieldsetPainter.cpp
|
| diff --git a/Source/core/paint/FieldsetPainter.cpp b/Source/core/paint/FieldsetPainter.cpp
|
| index 11758ccc3c9e366f181ae3fef0f9b3f234742b68..b192024c19a202132cffc0f3113fe695b9b943ec 100644
|
| --- a/Source/core/paint/FieldsetPainter.cpp
|
| +++ b/Source/core/paint/FieldsetPainter.cpp
|
| @@ -36,8 +36,11 @@ void FieldsetPainter::paintBoxDecorationBackground(const PaintInfo& paintInfo, c
|
| paintRect.setX(paintRect.x() + xOff);
|
| }
|
|
|
| + RenderDrawingRecorder recorder(paintInfo.context, m_renderFieldset, paintInfo.phase, pixelSnappedIntRect(paintOffset, paintRect.size()));
|
| + if (recorder.canUseCachedDrawing())
|
| + return;
|
| +
|
| BoxDecorationData boxDecorationData(*m_renderFieldset.style(), m_renderFieldset.canRenderBorderImage(), m_renderFieldset.backgroundHasOpaqueTopLayer(), m_renderFieldset.backgroundShouldAlwaysBeClipped(), paintInfo.context);
|
| - RenderDrawingRecorder recorder(paintInfo.context, &m_renderFieldset, paintInfo.phase, pixelSnappedIntRect(paintOffset, paintRect.size()));
|
|
|
| if (boxDecorationData.bleedAvoidance() == BackgroundBleedNone)
|
| BoxPainter::paintBoxShadow(paintInfo, paintRect, m_renderFieldset.style(), Normal);
|
|
|