| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 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 14 matching lines...) Expand all Loading... |
| 25 #include "core/SVGNames.h" | 25 #include "core/SVGNames.h" |
| 26 #include "platform/graphics/filters/FilterEffect.h" | 26 #include "platform/graphics/filters/FilterEffect.h" |
| 27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" | 27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| 30 | 30 |
| 31 inline SVGFETileElement::SVGFETileElement(Document& document) | 31 inline SVGFETileElement::SVGFETileElement(Document& document) |
| 32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) | 32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) |
| 33 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) | 33 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create(
))) |
| 34 { | 34 { |
| 35 ScriptWrappable::init(this); | |
| 36 addToPropertyMap(m_in1); | 35 addToPropertyMap(m_in1); |
| 37 } | 36 } |
| 38 | 37 |
| 39 DEFINE_NODE_FACTORY(SVGFETileElement) | 38 DEFINE_NODE_FACTORY(SVGFETileElement) |
| 40 | 39 |
| 41 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) | 40 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) |
| 42 { | 41 { |
| 43 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 42 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
| 44 if (supportedAttributes.isEmpty()) | 43 if (supportedAttributes.isEmpty()) |
| 45 supportedAttributes.add(SVGNames::inAttr); | 44 supportedAttributes.add(SVGNames::inAttr); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 85 |
| 87 if (!input1) | 86 if (!input1) |
| 88 return nullptr; | 87 return nullptr; |
| 89 | 88 |
| 90 RefPtr<FilterEffect> effect = FETile::create(filter); | 89 RefPtr<FilterEffect> effect = FETile::create(filter); |
| 91 effect->inputEffects().append(input1); | 90 effect->inputEffects().append(input1); |
| 92 return effect.release(); | 91 return effect.release(); |
| 93 } | 92 } |
| 94 | 93 |
| 95 } | 94 } |
| OLD | NEW |