diff options
Diffstat (limited to 'WebCore/rendering/RenderTableCell.h')
-rw-r--r-- | WebCore/rendering/RenderTableCell.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/WebCore/rendering/RenderTableCell.h b/WebCore/rendering/RenderTableCell.h index 31879d6..15e6bab 100644 --- a/WebCore/rendering/RenderTableCell.h +++ b/WebCore/rendering/RenderTableCell.h @@ -51,11 +51,11 @@ public: RenderTableSection* section() const { return toRenderTableSection(parent()->parent()); } RenderTable* table() const { return toRenderTable(parent()->parent()->parent()); } - Length styleOrColWidth() const; + Length styleOrColLogicalWidth() const; virtual void computePreferredLogicalWidths(); - void updateWidth(int); + void updateLogicalWidth(int); virtual int borderLeft() const; virtual int borderRight() const; @@ -71,8 +71,18 @@ public: int borderHalfTop(bool outer) const; int borderHalfBottom(bool outer) const; - CollapsedBorderValue collapsedLeftBorder(bool rtl) const; - CollapsedBorderValue collapsedRightBorder(bool rtl) const; + int borderHalfStart(bool outer) const; + int borderHalfEnd(bool outer) const; + int borderHalfBefore(bool outer) const; + int borderHalfAfter(bool outer) const; + + CollapsedBorderValue collapsedStartBorder() const; + CollapsedBorderValue collapsedEndBorder() const; + CollapsedBorderValue collapsedBeforeBorder() const; + CollapsedBorderValue collapsedAfterBorder() const; + + CollapsedBorderValue collapsedLeftBorder() const; + CollapsedBorderValue collapsedRightBorder() const; CollapsedBorderValue collapsedTopBorder() const; CollapsedBorderValue collapsedBottomBorder() const; |