OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 | 42 |
43 class SVGSVGElement FINAL : public SVGGraphicsElement, | 43 class SVGSVGElement FINAL : public SVGGraphicsElement, |
44 public SVGFitToViewBox, | 44 public SVGFitToViewBox, |
45 public SVGZoomAndPan { | 45 public SVGZoomAndPan { |
46 public: | 46 public: |
47 static PassRefPtr<SVGSVGElement> create(Document&); | 47 static PassRefPtr<SVGSVGElement> create(Document&); |
48 | 48 |
49 using SVGGraphicsElement::ref; | 49 using SVGGraphicsElement::ref; |
50 using SVGGraphicsElement::deref; | 50 using SVGGraphicsElement::deref; |
51 | 51 |
52 virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); } | |
53 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } | 52 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } |
54 | 53 |
55 // 'SVGSVGElement' functions | 54 // 'SVGSVGElement' functions |
56 const AtomicString& contentScriptType() const; | 55 const AtomicString& contentScriptType() const; |
57 void setContentScriptType(const AtomicString& type); | 56 void setContentScriptType(const AtomicString& type); |
58 | 57 |
59 const AtomicString& contentStyleType() const; | 58 const AtomicString& contentStyleType() const; |
60 void setContentStyleType(const AtomicString& type); | 59 void setContentStyleType(const AtomicString& type); |
61 | 60 |
62 SVGRect viewport() const; | 61 SVGRect viewport() const; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 inline bool isSVGSVGElement(const Node& node) | 185 inline bool isSVGSVGElement(const Node& node) |
187 { | 186 { |
188 return node.isSVGElement() && toSVGElement(node).isSVGSVGElement(); | 187 return node.isSVGElement() && toSVGElement(node).isSVGSVGElement(); |
189 } | 188 } |
190 | 189 |
191 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(SVGSVGElement); | 190 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(SVGSVGElement); |
192 | 191 |
193 } // namespace WebCore | 192 } // namespace WebCore |
194 | 193 |
195 #endif | 194 #endif |
OLD | NEW |