| Index: Source/core/rendering/RenderTableCell.cpp
|
| diff --git a/Source/core/rendering/RenderTableCell.cpp b/Source/core/rendering/RenderTableCell.cpp
|
| index 048e66af9124334398ed777250bdc533bbb54122..1d759148eb0f06cb55aab88ddb884d8c716b20e7 100644
|
| --- a/Source/core/rendering/RenderTableCell.cpp
|
| +++ b/Source/core/rendering/RenderTableCell.cpp
|
| @@ -1170,7 +1170,7 @@ void RenderTableCell::paintBackgroundsBehindCell(PaintInfo& paintInfo, const Lay
|
| if (backgroundObject != this)
|
| adjustedPaintOffset.moveBy(location());
|
|
|
| - StyleColor c = backgroundObject->resolveStyleColor(CSSPropertyBackgroundColor);
|
| + Color c = backgroundObject->resolveColor(CSSPropertyBackgroundColor);
|
| const FillLayer* bgLayer = backgroundObject->style()->backgroundLayers();
|
|
|
| if (bgLayer->hasImage() || c.isValid()) {
|
| @@ -1183,7 +1183,7 @@ void RenderTableCell::paintBackgroundsBehindCell(PaintInfo& paintInfo, const Lay
|
| width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
|
| paintInfo.context->clip(clipRect);
|
| }
|
| - paintFillLayers(paintInfo, c.color(), bgLayer, LayoutRect(adjustedPaintOffset, pixelSnappedSize()), BackgroundBleedNone, CompositeSourceOver, backgroundObject);
|
| + paintFillLayers(paintInfo, c, bgLayer, LayoutRect(adjustedPaintOffset, pixelSnappedSize()), BackgroundBleedNone, CompositeSourceOver, backgroundObject);
|
| }
|
| }
|
|
|
|
|