Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGAltGlyphElement.cpp
1 /*
2  * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4  * Copyright (C) 2008 Apple Inc. All rights reserved.
5  * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
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 #include "config.h"
24
25 #if ENABLE(SVG_FONTS)
26 #include "core/svg/SVGAltGlyphElement.h"
27
28 #include "SVGNames.h"
29 #include "XLinkNames.h"
30 #include "bindings/v8/ExceptionMessages.h"
31 #include "bindings/v8/ExceptionState.h"
32 #include "core/dom/ExceptionCode.h"
33 #include "core/rendering/svg/RenderSVGTSpan.h"
34 #include "core/svg/SVGAltGlyphDefElement.h"
35
36 namespace WebCore {
37
38 inline SVGAltGlyphElement::SVGAltGlyphElement(Document& document)
39     : SVGTextPositioningElement(SVGNames::altGlyphTag, document)
40     , SVGURIReference(this)
41 {
42     ScriptWrappable::init(this);
43 }
44
45 PassRefPtr<SVGAltGlyphElement> SVGAltGlyphElement::create(Document& document)
46 {
47     return adoptRef(new SVGAltGlyphElement(document));
48 }
49
50 void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionState& exceptionState)
51 {
52     exceptionState.throwDOMException(NoModificationAllowedError, ExceptionMessages::readOnly());
53 }
54
55 const AtomicString& SVGAltGlyphElement::glyphRef() const
56 {
57     return fastGetAttribute(SVGNames::glyphRefAttr);
58 }
59
60 void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionState& exceptionState)
61 {
62     exceptionState.throwDOMException(NoModificationAllowedError, ExceptionMessages::readOnly());
63 }
64
65 const AtomicString& SVGAltGlyphElement::format() const
66 {
67     return fastGetAttribute(SVGNames::formatAttr);
68 }
69
70 RenderObject* SVGAltGlyphElement::createRenderer(RenderStyle*)
71 {
72     return new RenderSVGTSpan(this);
73 }
74
75 bool SVGAltGlyphElement::hasValidGlyphElements(Vector<AtomicString>& glyphNames) const
76 {
77     AtomicString target;
78     Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), treeScope(), &target);
79     if (!element)
80         return false;
81
82     if (isSVGGlyphElement(*element)) {
83         glyphNames.append(target);
84         return true;
85     }
86
87     if (isSVGAltGlyphDefElement(*element) && toSVGAltGlyphDefElement(*element).hasValidGlyphElements(glyphNames))
88         return true;
89
90     return false;
91 }
92
93 }
94
95 #endif