Chromium Code Reviews| Index: Source/core/rendering/RenderTableCell.cpp |
| diff --git a/Source/core/rendering/RenderTableCell.cpp b/Source/core/rendering/RenderTableCell.cpp |
| index a0c76d2f46266dbb8d17f61edb21c068eb2f3028..86af82d2fe550b4fc4e9728e6407a593ad92ba8f 100644 |
| --- a/Source/core/rendering/RenderTableCell.cpp |
| +++ b/Source/core/rendering/RenderTableCell.cpp |
| @@ -992,7 +992,7 @@ int RenderTableCell::borderHalfAfter(bool outer) const |
| void RenderTableCell::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
| { |
| ASSERT(paintInfo.phase != PaintPhaseCollapsedTableBorders); |
| - RenderBlockFlow::paint(paintInfo, paintOffset); |
| + RenderBlock::paint(paintInfo, paintOffset); |
|
mstensho (USE GERRIT)
2014/09/19 10:50:11
Why this change? While there's currently no implem
chrishtr
2014/09/19 16:35:24
I want it to be explicit, so that I can more easil
mstensho (USE GERRIT)
2014/09/19 18:08:55
But a table cell IS a RenderBlockFlow, and it may
chrishtr
2014/09/19 18:14:36
I don't care that much, so reverted this change.
|
| } |
| static EBorderStyle collapsedBorderStyle(EBorderStyle style) |