| Index: Source/core/rendering/RenderTable.cpp
|
| diff --git a/Source/core/rendering/RenderTable.cpp b/Source/core/rendering/RenderTable.cpp
|
| index 66d8feb0464158bcba589955c13e220392d6e5e9..cf2d2f351589b448cf2ef03272db9bd3e88b3167 100644
|
| --- a/Source/core/rendering/RenderTable.cpp
|
| +++ b/Source/core/rendering/RenderTable.cpp
|
| @@ -627,7 +627,7 @@ void RenderTable::subtractCaptionRect(LayoutRect& rect) const
|
| {
|
| for (unsigned i = 0; i < m_captions.size(); i++) {
|
| LayoutUnit captionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
|
| - bool captionIsBefore = (m_captions[i]->style()->captionSide() != CAPBOTTOM) ^ style()->isFlippedBlocksWritingMode();
|
| + bool captionIsBefore = (m_captions[i]->style()->captionSide() != CAPBOTTOM) ^ style()->slowIsFlippedBlocksWritingMode();
|
| if (style()->isHorizontalWritingMode()) {
|
| rect.setHeight(rect.height() - captionLogicalHeight);
|
| if (captionIsBefore)
|
|
|