| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "core/svg/SVGViewElement.h" | 23 #include "core/svg/SVGViewElement.h" |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 | 26 |
| 27 inline SVGViewElement::SVGViewElement(Document& document) | 27 inline SVGViewElement::SVGViewElement(Document& document) |
| 28 : SVGElement(SVGNames::viewTag, document) | 28 : SVGElement(SVGNames::viewTag, document) |
| 29 , SVGFitToViewBox(this) | 29 , SVGFitToViewBox(this) |
| 30 , m_viewTarget(SVGStaticStringList::create(this, SVGNames::viewTargetAttr)) | 30 , m_viewTarget(SVGStaticStringList::create(this, SVGNames::viewTargetAttr)) |
| 31 { | 31 { |
| 32 ScriptWrappable::init(this); | |
| 33 | |
| 34 addToPropertyMap(m_viewTarget); | 32 addToPropertyMap(m_viewTarget); |
| 35 } | 33 } |
| 36 | 34 |
| 37 DEFINE_NODE_FACTORY(SVGViewElement) | 35 DEFINE_NODE_FACTORY(SVGViewElement) |
| 38 | 36 |
| 39 bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) | 37 bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) |
| 40 { | 38 { |
| 41 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 39 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
| 42 if (supportedAttributes.isEmpty()) { | 40 if (supportedAttributes.isEmpty()) { |
| 43 SVGFitToViewBox::addSupportedAttributes(supportedAttributes); | 41 SVGFitToViewBox::addSupportedAttributes(supportedAttributes); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 60 } else if (SVGZoomAndPan::parseAttribute(name, value)) { | 58 } else if (SVGZoomAndPan::parseAttribute(name, value)) { |
| 61 } else if (name == SVGNames::viewTargetAttr) { | 59 } else if (name == SVGNames::viewTargetAttr) { |
| 62 m_viewTarget->setBaseValueAsString(value, parseError); | 60 m_viewTarget->setBaseValueAsString(value, parseError); |
| 63 } else { | 61 } else { |
| 64 ASSERT_NOT_REACHED(); | 62 ASSERT_NOT_REACHED(); |
| 65 } | 63 } |
| 66 | 64 |
| 67 reportAttributeParsingError(parseError, name, value); | 65 reportAttributeParsingError(parseError, name, value); |
| 68 } | 66 } |
| 69 | 67 |
| 70 } | 68 } // namespace blink |
| OLD | NEW |