1/*
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB.  If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#include "config.h"
22
23#include "core/svg/SVGDefsElement.h"
24
25#include "SVGNames.h"
26#include "core/rendering/svg/RenderSVGHiddenContainer.h"
27
28namespace WebCore {
29
30// Animated property definitions
31DEFINE_ANIMATED_BOOLEAN(SVGDefsElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
32
33BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGDefsElement)
34    REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired)
35    REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement)
36END_REGISTER_ANIMATED_PROPERTIES
37
38inline SVGDefsElement::SVGDefsElement(Document& document)
39    : SVGGraphicsElement(SVGNames::defsTag, document)
40{
41    ScriptWrappable::init(this);
42    registerAnimatedPropertiesForSVGDefsElement();
43}
44
45PassRefPtr<SVGDefsElement> SVGDefsElement::create(Document& document)
46{
47    return adoptRef(new SVGDefsElement(document));
48}
49
50bool SVGDefsElement::isValid() const
51{
52    return SVGTests::isValid();
53}
54
55RenderObject* SVGDefsElement::createRenderer(RenderStyle*)
56{
57    return new RenderSVGHiddenContainer(this);
58}
59
60}
61