OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 #include "core/rendering/svg/RenderSVGGradientStop.h" | 25 #include "core/rendering/svg/RenderSVGGradientStop.h" |
26 #include "core/rendering/svg/RenderSVGResource.h" | 26 #include "core/rendering/svg/RenderSVGResource.h" |
27 | 27 |
28 namespace blink { | 28 namespace blink { |
29 | 29 |
30 inline SVGStopElement::SVGStopElement(Document& document) | 30 inline SVGStopElement::SVGStopElement(Document& document) |
31 : SVGElement(SVGNames::stopTag, document) | 31 : SVGElement(SVGNames::stopTag, document) |
32 , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAc
ceptPercentage::create())) | 32 , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAc
ceptPercentage::create())) |
33 { | 33 { |
34 ScriptWrappable::init(this); | |
35 | |
36 addToPropertyMap(m_offset); | 34 addToPropertyMap(m_offset); |
37 } | 35 } |
38 | 36 |
39 DEFINE_NODE_FACTORY(SVGStopElement) | 37 DEFINE_NODE_FACTORY(SVGStopElement) |
40 | 38 |
41 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) | 39 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) |
42 { | 40 { |
43 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 41 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
44 if (supportedAttributes.isEmpty()) | 42 if (supportedAttributes.isEmpty()) |
45 supportedAttributes.add(SVGNames::offsetAttr); | 43 supportedAttributes.add(SVGNames::offsetAttr); |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 // FIXME: This check for null style exists to address Bug WK 90814, a rare c
rash condition in | 97 // FIXME: This check for null style exists to address Bug WK 90814, a rare c
rash condition in |
100 // which the renderer or style is null. This entire class is scheduled for r
emoval (Bug WK 86941) | 98 // which the renderer or style is null. This entire class is scheduled for r
emoval (Bug WK 86941) |
101 // and we will tolerate this null check until then. | 99 // and we will tolerate this null check until then. |
102 if (!style) | 100 if (!style) |
103 return Color(Color::transparent); // Transparent black. | 101 return Color(Color::transparent); // Transparent black. |
104 | 102 |
105 const SVGRenderStyle& svgStyle = style->svgStyle(); | 103 const SVGRenderStyle& svgStyle = style->svgStyle(); |
106 return svgStyle.stopColor().combineWithAlpha(svgStyle.stopOpacity()); | 104 return svgStyle.stopColor().combineWithAlpha(svgStyle.stopOpacity()); |
107 } | 105 } |
108 | 106 |
109 } | 107 } // namespace blink |
OLD | NEW |