1 /*
2 * This file is part of the WebKit project.
3 *
4 * Copyright (C) 2006 Apple Computer, Inc.
5 * (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
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
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 *
22 */
23
24 #include "config.h"
25
26 #if ENABLE(SVG)
27 #include "RenderSVGBlock.h"
28
29 #include "SVGElement.h"
30
31 namespace WebCore {
32
RenderSVGBlock(SVGElement * node)33 RenderSVGBlock::RenderSVGBlock(SVGElement* node)
34 : RenderBlock(node)
35 {
36 }
37
setStyle(PassRefPtr<RenderStyle> style)38 void RenderSVGBlock::setStyle(PassRefPtr<RenderStyle> style)
39 {
40 RefPtr<RenderStyle> useStyle = style;
41
42 // SVG text layout code expects us to be a block-level style element.
43 if (useStyle->display() == NONE)
44 setChildrenInline(false);
45 else if (useStyle->isDisplayInlineType()) {
46 RefPtr<RenderStyle> newStyle = RenderStyle::create();
47 newStyle->inheritFrom(useStyle.get());
48 newStyle->setDisplay(BLOCK);
49 useStyle = newStyle.release();
50 }
51
52 RenderBlock::setStyle(useStyle.release());
53 setReplaced(false);
54
55 //FIXME: Once overflow rules are supported by SVG we should
56 //probably map the CSS overflow rules rather than just ignoring
57 //them
58 setHasOverflowClip(false);
59 }
60
61 }
62
63 #endif // ENABLE(SVG)
64