Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: Source/core/rendering/RenderFieldset.cpp

Issue 197283025: Use new is*Element() helper functions more in rendering code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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.
11 * 11 *
12 * This library is distributed in the hope that it will be useful, 12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details. 15 * Library General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Library General Public License 17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to 18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA. 20 * Boston, MA 02110-1301, USA.
21 * 21 *
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "core/rendering/RenderFieldset.h" 25 #include "core/rendering/RenderFieldset.h"
26 26
27 #include "CSSPropertyNames.h" 27 #include "CSSPropertyNames.h"
28 #include "HTMLNames.h" 28 #include "HTMLNames.h"
29 #include "core/html/HTMLLegendElement.h"
29 #include "core/rendering/PaintInfo.h" 30 #include "core/rendering/PaintInfo.h"
30 #include "platform/graphics/GraphicsContextStateSaver.h" 31 #include "platform/graphics/GraphicsContextStateSaver.h"
31 32
32 using std::min; 33 using std::min;
33 using std::max; 34 using std::max;
34 35
35 namespace WebCore { 36 namespace WebCore {
36 37
37 using namespace HTMLNames; 38 using namespace HTMLNames;
38 39
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 } 123 }
123 return legend; 124 return legend;
124 } 125 }
125 126
126 RenderBox* RenderFieldset::findLegend(FindLegendOption option) const 127 RenderBox* RenderFieldset::findLegend(FindLegendOption option) const
127 { 128 {
128 for (RenderObject* legend = firstChild(); legend; legend = legend->nextSibli ng()) { 129 for (RenderObject* legend = firstChild(); legend; legend = legend->nextSibli ng()) {
129 if (option == IgnoreFloatingOrOutOfFlow && legend->isFloatingOrOutOfFlow Positioned()) 130 if (option == IgnoreFloatingOrOutOfFlow && legend->isFloatingOrOutOfFlow Positioned())
130 continue; 131 continue;
131 132
132 if (legend->node() && (legend->node()->hasTagName(legendTag))) 133 if (isHTMLLegendElement(legend->node()))
133 return toRenderBox(legend); 134 return toRenderBox(legend);
134 } 135 }
135 return 0; 136 return 0;
136 } 137 }
137 138
138 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, const LayoutPoint & paintOffset) 139 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, const LayoutPoint & paintOffset)
139 { 140 {
140 if (!paintInfo.shouldPaintWithinRoot(this)) 141 if (!paintInfo.shouldPaintWithinRoot(this))
141 return; 142 return;
142 143
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 } else { 207 } else {
207 LayoutUnit xOff = (legend->x() > 0) ? LayoutUnit() : (legend->width() - borderLeft()) / 2; 208 LayoutUnit xOff = (legend->x() > 0) ? LayoutUnit() : (legend->width() - borderLeft()) / 2;
208 paintRect.expand(-xOff, 0); 209 paintRect.expand(-xOff, 0);
209 paintRect.move(xOff, 0); 210 paintRect.move(xOff, 0);
210 } 211 }
211 212
212 paintMaskImages(paintInfo, paintRect); 213 paintMaskImages(paintInfo, paintRect);
213 } 214 }
214 215
215 } // namespace WebCore 216 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderDetailsMarker.cpp ('k') | Source/core/rendering/RenderFileUploadControl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698