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, 2007, 2009, 2013 Apple Inc. All rights
reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2013 Apple Inc. All rights
reserved. |
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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 virtual void willBeRemovedFromTree() OVERRIDE; | 231 virtual void willBeRemovedFromTree() OVERRIDE; |
232 | 232 |
233 virtual void updateLogicalWidth() OVERRIDE; | 233 virtual void updateLogicalWidth() OVERRIDE; |
234 | 234 |
235 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&) OVERRIDE; | 235 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&) OVERRIDE; |
236 virtual void paintMask(PaintInfo&, const LayoutPoint&) OVERRIDE; | 236 virtual void paintMask(PaintInfo&, const LayoutPoint&) OVERRIDE; |
237 | 237 |
238 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance,
InlineFlowBox*) const OVERRIDE; | 238 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance,
InlineFlowBox*) const OVERRIDE; |
239 | 239 |
240 virtual LayoutSize offsetFromContainer(const RenderObject*, const LayoutPoin
t&, bool* offsetDependsOnPoint = 0) const OVERRIDE; | 240 virtual LayoutSize offsetFromContainer(const RenderObject*, const LayoutPoin
t&, bool* offsetDependsOnPoint = 0) const OVERRIDE; |
241 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObjec
t* repaintContainer) const OVERRIDE; | 241 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayer
ModelObject* paintInvalidationContainer) const OVERRIDE; |
242 virtual void mapRectToRepaintBacking(const RenderLayerModelObject* repaintCo
ntainer, LayoutRect&, bool fixed = false) const OVERRIDE; | 242 virtual void mapRectToPaintInvalidationBacking(const RenderLayerModelObject*
paintInvalidationContainer, LayoutRect&, bool fixed = false) const OVERRIDE; |
243 | 243 |
244 int borderHalfLeft(bool outer) const; | 244 int borderHalfLeft(bool outer) const; |
245 int borderHalfRight(bool outer) const; | 245 int borderHalfRight(bool outer) const; |
246 int borderHalfTop(bool outer) const; | 246 int borderHalfTop(bool outer) const; |
247 int borderHalfBottom(bool outer) const; | 247 int borderHalfBottom(bool outer) const; |
248 | 248 |
249 int borderHalfStart(bool outer) const; | 249 int borderHalfStart(bool outer) const; |
250 int borderHalfEnd(bool outer) const; | 250 int borderHalfEnd(bool outer) const; |
251 int borderHalfBefore(bool outer) const; | 251 int borderHalfBefore(bool outer) const; |
252 int borderHalfAfter(bool outer) const; | 252 int borderHalfAfter(bool outer) const; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 312 |
313 inline RenderTableCell* RenderTableRow::lastCell() const | 313 inline RenderTableCell* RenderTableRow::lastCell() const |
314 { | 314 { |
315 ASSERT(children() == virtualChildren()); | 315 ASSERT(children() == virtualChildren()); |
316 return toRenderTableCell(children()->lastChild()); | 316 return toRenderTableCell(children()->lastChild()); |
317 } | 317 } |
318 | 318 |
319 } // namespace WebCore | 319 } // namespace WebCore |
320 | 320 |
321 #endif // RenderTableCell_h | 321 #endif // RenderTableCell_h |
OLD | NEW |