| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 LayoutBox* LayoutFieldset::findLegend(FindLegendOption option) const | 128 LayoutBox* LayoutFieldset::findLegend(FindLegendOption option) const |
| 129 { | 129 { |
| 130 for (LayoutObject* legend = firstChild(); legend; legend = legend->nextSibli
ng()) { | 130 for (LayoutObject* legend = firstChild(); legend; legend = legend->nextSibli
ng()) { |
| 131 if (option == IgnoreFloatingOrOutOfFlow && legend->isFloatingOrOutOfFlow
Positioned()) | 131 if (option == IgnoreFloatingOrOutOfFlow && legend->isFloatingOrOutOfFlow
Positioned()) |
| 132 continue; | 132 continue; |
| 133 | 133 |
| 134 if (isHTMLLegendElement(legend->node())) | 134 if (isHTMLLegendElement(legend->node())) |
| 135 return toLayoutBox(legend); | 135 return toLayoutBox(legend); |
| 136 } | 136 } |
| 137 return 0; | 137 return nullptr; |
| 138 } | 138 } |
| 139 | 139 |
| 140 void LayoutFieldset::paintBoxDecorationBackground(const PaintInfo& paintInfo, co
nst LayoutPoint& paintOffset) | 140 void LayoutFieldset::paintBoxDecorationBackground(const PaintInfo& paintInfo, co
nst LayoutPoint& paintOffset) |
| 141 { | 141 { |
| 142 FieldsetPainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); | 142 FieldsetPainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); |
| 143 } | 143 } |
| 144 | 144 |
| 145 void LayoutFieldset::paintMask(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) | 145 void LayoutFieldset::paintMask(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) |
| 146 { | 146 { |
| 147 FieldsetPainter(*this).paintMask(paintInfo, paintOffset); | 147 FieldsetPainter(*this).paintMask(paintInfo, paintOffset); |
| 148 } | 148 } |
| 149 | 149 |
| 150 } // namespace blink | 150 } // namespace blink |
| OLD | NEW |