| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyName
ToIdMap, const QualifiedName& attrName); | 48 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyName
ToIdMap, const QualifiedName& attrName); |
| 49 | 49 |
| 50 class SVGElement : public Element { | 50 class SVGElement : public Element { |
| 51 public: | 51 public: |
| 52 virtual ~SVGElement(); | 52 virtual ~SVGElement(); |
| 53 | 53 |
| 54 bool isOutermostSVGSVGElement() const; | 54 bool isOutermostSVGSVGElement() const; |
| 55 | 55 |
| 56 virtual String title() const OVERRIDE; | 56 virtual String title() const OVERRIDE; |
| 57 bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEm
pty(); } | 57 bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEm
pty(); } |
| 58 virtual bool supportsMarkers() const { return false; } | |
| 59 PassRefPtrWillBeRawPtr<CSSValue> getPresentationAttribute(const AtomicString
& name); | 58 PassRefPtrWillBeRawPtr<CSSValue> getPresentationAttribute(const AtomicString
& name); |
| 60 static bool isAnimatableCSSProperty(const QualifiedName&); | 59 static bool isAnimatableCSSProperty(const QualifiedName&); |
| 61 enum CTMScope { | 60 enum CTMScope { |
| 62 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() | 61 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() |
| 63 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM() | 62 ScreenScope, // Used by SVGGraphicsElement::getScreenCTM() |
| 64 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List(
) | 63 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List(
) |
| 65 }; | 64 }; |
| 66 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; | 65 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; |
| 67 virtual bool needsPendingResourceHandling() const { return true; } | 66 virtual bool needsPendingResourceHandling() const { return true; } |
| 68 | 67 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 return DefaultHash<QualifiedName>::Hash::hash(key); | 225 return DefaultHash<QualifiedName>::Hash::hash(key); |
| 227 } | 226 } |
| 228 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a
.matches(b); } | 227 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a
.matches(b); } |
| 229 }; | 228 }; |
| 230 | 229 |
| 231 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement()); | 230 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement()); |
| 232 | 231 |
| 233 } | 232 } |
| 234 | 233 |
| 235 #endif | 234 #endif |
| OLD | NEW |