| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
| 4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
| 5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 void invalidateCachedColumns(); | 299 void invalidateCachedColumns(); |
| 300 | 300 |
| 301 virtual RenderBlock* firstLineBlock() const OVERRIDE; | 301 virtual RenderBlock* firstLineBlock() const OVERRIDE; |
| 302 virtual void updateFirstLetter() OVERRIDE; | 302 virtual void updateFirstLetter() OVERRIDE; |
| 303 | 303 |
| 304 virtual void updateLogicalWidth() OVERRIDE; | 304 virtual void updateLogicalWidth() OVERRIDE; |
| 305 | 305 |
| 306 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica
lWidth, LayoutUnit availableWidth); | 306 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica
lWidth, LayoutUnit availableWidth); |
| 307 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogi
calHeight); | 307 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogi
calHeight); |
| 308 | 308 |
| 309 virtual LayoutRect overflowClipRect(const LayoutPoint& location, RenderRegio
n*, OverlayScrollbarSizeRelevancy = IgnoreOverlayScrollbarSize) OVERRIDE; | 309 virtual LayoutRect overflowClipRect(const LayoutPoint& location, OverlayScro
llbarSizeRelevancy = IgnoreOverlayScrollbarSize) OVERRIDE; |
| 310 | 310 |
| 311 virtual void addOverflowFromChildren() OVERRIDE; | 311 virtual void addOverflowFromChildren() OVERRIDE; |
| 312 | 312 |
| 313 void subtractCaptionRect(LayoutRect&) const; | 313 void subtractCaptionRect(LayoutRect&) const; |
| 314 | 314 |
| 315 void recalcCollapsedBorders(); | 315 void recalcCollapsedBorders(); |
| 316 void recalcSections() const; | 316 void recalcSections() const; |
| 317 void layoutCaption(RenderTableCaption*); | 317 void layoutCaption(RenderTableCaption*); |
| 318 | 318 |
| 319 void distributeExtraLogicalHeight(int extraLogicalHeight); | 319 void distributeExtraLogicalHeight(int extraLogicalHeight); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 if (m_firstBody) | 362 if (m_firstBody) |
| 363 return m_firstBody; | 363 return m_firstBody; |
| 364 return m_foot; | 364 return m_foot; |
| 365 } | 365 } |
| 366 | 366 |
| 367 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable()); | 367 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable()); |
| 368 | 368 |
| 369 } // namespace WebCore | 369 } // namespace WebCore |
| 370 | 370 |
| 371 #endif // RenderTable_h | 371 #endif // RenderTable_h |
| OLD | NEW |