| 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 10 matching lines...) Expand all Loading... |
| 21 * | 21 * |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "core/layout/LayoutFieldset.h" | 25 #include "core/layout/LayoutFieldset.h" |
| 26 | 26 |
| 27 #include "core/CSSPropertyNames.h" | 27 #include "core/CSSPropertyNames.h" |
| 28 #include "core/HTMLNames.h" | 28 #include "core/HTMLNames.h" |
| 29 #include "core/html/HTMLLegendElement.h" | 29 #include "core/html/HTMLLegendElement.h" |
| 30 #include "core/paint/FieldsetPainter.h" | 30 #include "core/paint/FieldsetPainter.h" |
| 31 #include "platform/graphics/GraphicsContextStateSaver.h" | |
| 32 | 31 |
| 33 using namespace std; | 32 using namespace std; |
| 34 | 33 |
| 35 namespace blink { | 34 namespace blink { |
| 36 | 35 |
| 37 using namespace HTMLNames; | 36 using namespace HTMLNames; |
| 38 | 37 |
| 39 LayoutFieldset::LayoutFieldset(Element* element) | 38 LayoutFieldset::LayoutFieldset(Element* element) |
| 40 : LayoutBlockFlow(element) | 39 : LayoutBlockFlow(element) |
| 41 { | 40 { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 { | 139 { |
| 141 FieldsetPainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); | 140 FieldsetPainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); |
| 142 } | 141 } |
| 143 | 142 |
| 144 void LayoutFieldset::paintMask(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) | 143 void LayoutFieldset::paintMask(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) |
| 145 { | 144 { |
| 146 FieldsetPainter(*this).paintMask(paintInfo, paintOffset); | 145 FieldsetPainter(*this).paintMask(paintInfo, paintOffset); |
| 147 } | 146 } |
| 148 | 147 |
| 149 } // namespace blink | 148 } // namespace blink |
| OLD | NEW |