| Index: Source/core/svg/SVGFilterElement.cpp
|
| diff --git a/Source/core/svg/SVGFilterElement.cpp b/Source/core/svg/SVGFilterElement.cpp
|
| index 34029133917a247f3e7e080fbc368da651655329..0f2cbb38ec6d84e2577a29b8e69d59a1d92d56e7 100644
|
| --- a/Source/core/svg/SVGFilterElement.cpp
|
| +++ b/Source/core/svg/SVGFilterElement.cpp
|
| @@ -115,7 +115,7 @@ bool SVGFilterElement::isSupportedAttribute(const QualifiedName& attrName)
|
| supportedAttributes.add(SVGNames::heightAttr);
|
| supportedAttributes.add(SVGNames::filterResAttr);
|
| }
|
| - return supportedAttributes.contains<QualifiedName, SVGAttributeHashTranslator>(attrName);
|
| + return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
|
| }
|
|
|
| void SVGFilterElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
| @@ -226,7 +226,7 @@ bool SVGFilterElement::childShouldCreateRenderer(const NodeRenderingContext& chi
|
| allowedChildElementTags.add(SVGNames::feTurbulenceTag);
|
| }
|
|
|
| - return allowedChildElementTags.contains<QualifiedName, SVGAttributeHashTranslator>(svgElement->tagQName());
|
| + return allowedChildElementTags.contains<SVGAttributeHashTranslator>(svgElement->tagQName());
|
| }
|
|
|
| bool SVGFilterElement::selfHasRelativeLengths() const
|
|
|