| Index: Source/core/rendering/RenderView.cpp
|
| diff --git a/Source/core/rendering/RenderView.cpp b/Source/core/rendering/RenderView.cpp
|
| index e2057e4531dd2428f15becadddb5dad17febe139..32d63a0bcfa7130e5b007de7b28550cd4e6f33e5 100644
|
| --- a/Source/core/rendering/RenderView.cpp
|
| +++ b/Source/core/rendering/RenderView.cpp
|
| @@ -385,7 +385,7 @@ void RenderView::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
|
|
| // This avoids painting garbage between columns if there is a column gap.
|
| if (m_frameView && m_frameView->pagination().mode != Pagination::Unpaginated)
|
| - paintInfo.context->fillRect(paintInfo.rect, m_frameView->baseBackgroundColor(), ColorSpaceDeviceRGB);
|
| + paintInfo.context->fillRect(paintInfo.rect, m_frameView->baseBackgroundColor());
|
|
|
| paintObject(paintInfo, paintOffset);
|
| }
|
| @@ -471,7 +471,7 @@ void RenderView::paintBoxDecorations(PaintInfo& paintInfo, const LayoutPoint&)
|
| if (baseColor.alpha()) {
|
| CompositeOperator previousOperator = paintInfo.context->compositeOperation();
|
| paintInfo.context->setCompositeOperation(CompositeCopy);
|
| - paintInfo.context->fillRect(paintInfo.rect, baseColor, style()->colorSpace());
|
| + paintInfo.context->fillRect(paintInfo.rect, baseColor);
|
| paintInfo.context->setCompositeOperation(previousOperator);
|
| } else
|
| paintInfo.context->clearRect(paintInfo.rect);
|
|
|