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, 2013 Apple Inc. All rights reserv
ed. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 return NormalPaintLayer; | 149 return NormalPaintLayer; |
150 | 150 |
151 if (hasOverflowClip()) | 151 if (hasOverflowClip()) |
152 return OverflowClipPaintLayer; | 152 return OverflowClipPaintLayer; |
153 | 153 |
154 return NoPaintLayer; | 154 return NoPaintLayer; |
155 } | 155 } |
156 | 156 |
157 void paint(const PaintInfo&, const LayoutPoint&) const override; | 157 void paint(const PaintInfo&, const LayoutPoint&) const override; |
158 | 158 |
159 void imageChanged(WrappedImagePtr, const IntRect* = nullptr) override; | 159 void imageChanged(bool, WrappedImagePtr, const IntRect* = nullptr) override; |
160 | 160 |
161 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; | 161 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; |
162 | 162 |
163 void nextSibling() const = delete; | 163 void nextSibling() const = delete; |
164 void previousSibling() const = delete; | 164 void previousSibling() const = delete; |
165 | 165 |
166 LayoutObjectChildList m_children; | 166 LayoutObjectChildList m_children; |
167 | 167 |
168 // This field should never be read directly. It should be read through | 168 // This field should never be read directly. It should be read through |
169 // rowIndex() above instead. This is to ensure that we never read this | 169 // rowIndex() above instead. This is to ensure that we never read this |
(...skipping 21 matching lines...) Expand all Loading... |
191 | 191 |
192 inline LayoutTableRow* LayoutTableSection::lastRow() const | 192 inline LayoutTableRow* LayoutTableSection::lastRow() const |
193 { | 193 { |
194 ASSERT(children() == virtualChildren()); | 194 ASSERT(children() == virtualChildren()); |
195 return toLayoutTableRow(children()->lastChild()); | 195 return toLayoutTableRow(children()->lastChild()); |
196 } | 196 } |
197 | 197 |
198 } // namespace blink | 198 } // namespace blink |
199 | 199 |
200 #endif // LayoutTableRow_h | 200 #endif // LayoutTableRow_h |
OLD | NEW |