attrName 842 Source/core/accessibility/AXObjectCache.cpp void AXObjectCache::handleAttributeChanged(const QualifiedName& attrName, Element* element) attrName 844 Source/core/accessibility/AXObjectCache.cpp if (attrName == roleAttr) attrName 846 Source/core/accessibility/AXObjectCache.cpp else if (attrName == altAttr || attrName == titleAttr) attrName 848 Source/core/accessibility/AXObjectCache.cpp else if (attrName == forAttr && isHTMLLabelElement(*element)) attrName 851 Source/core/accessibility/AXObjectCache.cpp if (!attrName.localName().string().startsWith("aria-")) attrName 854 Source/core/accessibility/AXObjectCache.cpp if (attrName == aria_activedescendantAttr) attrName 856 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_valuenowAttr || attrName == aria_valuetextAttr) attrName 858 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_labelAttr || attrName == aria_labeledbyAttr || attrName == aria_labelledbyAttr) attrName 860 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_checkedAttr) attrName 862 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_selectedAttr) attrName 864 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_expandedAttr) attrName 866 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_hiddenAttr) attrName 868 Source/core/accessibility/AXObjectCache.cpp else if (attrName == aria_invalidAttr) attrName 141 Source/core/accessibility/AXObjectCache.h void handleAttributeChanged(const QualifiedName& attrName, Element*); attrName 2383 Source/core/css/parser/CSSPropertyParser.cpp String attrName = a->string; attrName 2387 Source/core/css/parser/CSSPropertyParser.cpp if (attrName[0] == '-') attrName 2391 Source/core/css/parser/CSSPropertyParser.cpp attrName = attrName.lower(); attrName 2393 Source/core/css/parser/CSSPropertyParser.cpp return cssValuePool().createValue(attrName, CSSPrimitiveValue::CSS_ATTR); attrName 5495 Source/core/dom/Document.cpp bool shouldInvalidateNodeListCachesForAttr(const unsigned nodeListCounts[], const QualifiedName& attrName) attrName 5497 Source/core/dom/Document.cpp if (nodeListCounts[type] && LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(static_cast<NodeListInvalidationType>(type), attrName)) attrName 5499 Source/core/dom/Document.cpp return shouldInvalidateNodeListCachesForAttr<type + 1>(nodeListCounts, attrName); attrName 5508 Source/core/dom/Document.cpp bool Document::shouldInvalidateNodeListCaches(const QualifiedName* attrName) const attrName 5510 Source/core/dom/Document.cpp if (attrName) attrName 5511 Source/core/dom/Document.cpp return shouldInvalidateNodeListCachesForAttr<DoNotInvalidateOnAttributeChanges + 1>(m_nodeListCounts, *attrName); attrName 5521 Source/core/dom/Document.cpp void Document::invalidateNodeListCaches(const QualifiedName* attrName) attrName 5525 Source/core/dom/Document.cpp (*it)->invalidateCache(attrName); attrName 662 Source/core/dom/Document.h bool shouldInvalidateNodeListCaches(const QualifiedName* attrName = 0) const; attrName 663 Source/core/dom/Document.h void invalidateNodeListCaches(const QualifiedName* attrName); attrName 71 Source/core/dom/LiveNodeListBase.h ALWAYS_INLINE void invalidateCache(const QualifiedName* attrName) const attrName 73 Source/core/dom/LiveNodeListBase.h if (!attrName || shouldInvalidateTypeOnAttributeChange(invalidationType(), *attrName)) attrName 75 Source/core/dom/LiveNodeListBase.h else if (hasIdNameCache() && (*attrName == HTMLNames::idAttr || *attrName == HTMLNames::nameAttr)) attrName 110 Source/core/dom/LiveNodeListBase.h ALWAYS_INLINE bool LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(NodeListInvalidationType type, const QualifiedName& attrName) attrName 114 Source/core/dom/LiveNodeListBase.h return attrName == HTMLNames::classAttr; attrName 116 Source/core/dom/LiveNodeListBase.h return attrName == HTMLNames::nameAttr; attrName 118 Source/core/dom/LiveNodeListBase.h return attrName == HTMLNames::idAttr || attrName == HTMLNames::nameAttr; attrName 120 Source/core/dom/LiveNodeListBase.h return attrName == HTMLNames::forAttr; attrName 122 Source/core/dom/LiveNodeListBase.h return attrName == HTMLNames::nameAttr || attrName == HTMLNames::idAttr || attrName == HTMLNames::forAttr attrName 123 Source/core/dom/LiveNodeListBase.h || attrName == HTMLNames::formAttr || attrName == HTMLNames::typeAttr; attrName 125 Source/core/dom/LiveNodeListBase.h return attrName == HTMLNames::hrefAttr; attrName 812 Source/core/dom/Node.cpp void Node::invalidateNodeListCachesInAncestors(const QualifiedName* attrName, Element* attributeOwnerElement) attrName 814 Source/core/dom/Node.cpp if (hasRareData() && (!attrName || isAttributeNode())) { attrName 820 Source/core/dom/Node.cpp if (attrName && !attributeOwnerElement) attrName 823 Source/core/dom/Node.cpp if (!document().shouldInvalidateNodeListCaches(attrName)) attrName 826 Source/core/dom/Node.cpp document().invalidateNodeListCaches(attrName); attrName 830 Source/core/dom/Node.cpp lists->invalidateCaches(attrName); attrName 590 Source/core/dom/Node.h void invalidateNodeListCachesInAncestors(const QualifiedName* attrName = 0, Element* attributeOwnerElement = 0); attrName 44 Source/core/dom/NodeRareData.cpp void NodeListsNodeData::invalidateCaches(const QualifiedName* attrName) attrName 48 Source/core/dom/NodeRareData.cpp it->value->invalidateCache(attrName); attrName 50 Source/core/dom/NodeRareData.cpp if (attrName) attrName 163 Source/core/dom/NodeRareData.h void invalidateCaches(const QualifiedName* attrName = 0); attrName 242 Source/core/editing/EditingStyle.cpp static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName) attrName 244 Source/core/editing/EditingStyle.cpp return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName)); attrName 246 Source/core/editing/EditingStyle.cpp static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName) attrName 248 Source/core/editing/EditingStyle.cpp return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName)); attrName 259 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalent(CSSPropertyID, const QualifiedName& tagName, const QualifiedName& attrName); attrName 260 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalent(CSSPropertyID, const QualifiedName& attrName); attrName 264 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalent::HTMLAttributeEquivalent(CSSPropertyID id, const QualifiedName& tagName, const QualifiedName& attrName) attrName 266 Source/core/editing/EditingStyle.cpp , m_attrName(attrName) attrName 270 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalent::HTMLAttributeEquivalent(CSSPropertyID id, const QualifiedName& attrName) attrName 272 Source/core/editing/EditingStyle.cpp , m_attrName(attrName) attrName 36 Source/core/events/MutationEvent.cpp const String& attrName, unsigned short attrChange) attrName 41 Source/core/events/MutationEvent.cpp , m_attrName(attrName) attrName 53 Source/core/events/MutationEvent.cpp const String& attrName, unsigned short attrChange) attrName 63 Source/core/events/MutationEvent.cpp m_attrName = attrName; attrName 48 Source/core/events/MutationEvent.h const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0) attrName 50 Source/core/events/MutationEvent.h return adoptRefWillBeNoop(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange)); attrName 55 Source/core/events/MutationEvent.h const String& attrName, unsigned short attrChange); attrName 60 Source/core/events/MutationEvent.h String attrName() const { return m_attrName; } attrName 71 Source/core/events/MutationEvent.h const String& attrName, unsigned short attrChange); attrName 203 Source/core/html/HTMLElement.cpp const AtomicString& HTMLElement::eventNameForAttributeName(const QualifiedName& attrName) attrName 205 Source/core/html/HTMLElement.cpp if (!attrName.namespaceURI().isNull()) attrName 297 Source/core/html/HTMLElement.cpp return attributeNameToEventNameMap.get(attrName.localName()); attrName 89 Source/core/html/HTMLElement.h static const AtomicString& eventNameForAttributeName(const QualifiedName& attrName); attrName 113 Source/core/html/HTMLFormControlsCollection.cpp const Vector<HTMLImageElement*>* imageElementsArray, const QualifiedName& attrName, const String& name) attrName 115 Source/core/html/HTMLFormControlsCollection.cpp ASSERT(attrName == idAttr || attrName == nameAttr); attrName 119 Source/core/html/HTMLFormControlsCollection.cpp if (elementsArray[i]->isEnumeratable() && element->fastGetAttribute(attrName) == name) attrName 128 Source/core/html/HTMLFormControlsCollection.cpp if (element->fastGetAttribute(attrName) == name) { attrName 141 Source/core/html/parser/XSSAuditor.cpp const String& attrName = name.namespaceURI() == XLinkNames::xlinkNamespaceURI ? "xlink:" + name.localName().string() : name.localName().string(); attrName 144 Source/core/html/parser/XSSAuditor.cpp if (equalIgnoringNullity(token.attributes().at(i).name, attrName)) { attrName 81 Source/core/svg/SVGAElement.cpp bool SVGAElement::isSupportedAttribute(const QualifiedName& attrName) attrName 88 Source/core/svg/SVGAElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 110 Source/core/svg/SVGAElement.cpp void SVGAElement::svgAttributeChanged(const QualifiedName& attrName) attrName 112 Source/core/svg/SVGAElement.cpp if (!isSupportedAttribute(attrName)) { attrName 113 Source/core/svg/SVGAElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 121 Source/core/svg/SVGAElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 99 Source/core/svg/SVGAnimateMotionElement.cpp bool SVGAnimateMotionElement::isSupportedAttribute(const QualifiedName& attrName) attrName 104 Source/core/svg/SVGAnimateMotionElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 56 Source/core/svg/SVGAnimateTransformElement.cpp bool SVGAnimateTransformElement::isSupportedAttribute(const QualifiedName& attrName) attrName 61 Source/core/svg/SVGAnimateTransformElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 143 Source/core/svg/SVGAnimationElement.cpp bool SVGAnimationElement::isSupportedAttribute(const QualifiedName& attrName) attrName 158 Source/core/svg/SVGAnimationElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 220 Source/core/svg/SVGAnimationElement.cpp void SVGAnimationElement::svgAttributeChanged(const QualifiedName& attrName) attrName 222 Source/core/svg/SVGAnimationElement.cpp if (!isSupportedAttribute(attrName)) { attrName 223 Source/core/svg/SVGAnimationElement.cpp SVGSMILElement::svgAttributeChanged(attrName); attrName 50 Source/core/svg/SVGCircleElement.cpp bool SVGCircleElement::isSupportedAttribute(const QualifiedName& attrName) attrName 58 Source/core/svg/SVGCircleElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 79 Source/core/svg/SVGCircleElement.cpp void SVGCircleElement::svgAttributeChanged(const QualifiedName& attrName) attrName 81 Source/core/svg/SVGCircleElement.cpp if (!isSupportedAttribute(attrName)) { attrName 82 Source/core/svg/SVGCircleElement.cpp SVGGeometryElement::svgAttributeChanged(attrName); attrName 88 Source/core/svg/SVGCircleElement.cpp bool isLengthAttribute = attrName == SVGNames::cxAttr attrName 89 Source/core/svg/SVGCircleElement.cpp || attrName == SVGNames::cyAttr attrName 90 Source/core/svg/SVGCircleElement.cpp || attrName == SVGNames::rAttr; attrName 44 Source/core/svg/SVGClipPathElement.cpp bool SVGClipPathElement::isSupportedAttribute(const QualifiedName& attrName) attrName 50 Source/core/svg/SVGClipPathElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 70 Source/core/svg/SVGClipPathElement.cpp void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName) attrName 72 Source/core/svg/SVGClipPathElement.cpp if (!isSupportedAttribute(attrName)) { attrName 73 Source/core/svg/SVGClipPathElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 68 Source/core/svg/SVGComponentTransferFunctionElement.cpp bool SVGComponentTransferFunctionElement::isSupportedAttribute(const QualifiedName& attrName) attrName 80 Source/core/svg/SVGComponentTransferFunctionElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 110 Source/core/svg/SVGComponentTransferFunctionElement.cpp void SVGComponentTransferFunctionElement::svgAttributeChanged(const QualifiedName& attrName) attrName 112 Source/core/svg/SVGComponentTransferFunctionElement.cpp if (!isSupportedAttribute(attrName)) { attrName 113 Source/core/svg/SVGComponentTransferFunctionElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 57 Source/core/svg/SVGCursorElement.cpp bool SVGCursorElement::isSupportedAttribute(const QualifiedName& attrName) attrName 66 Source/core/svg/SVGCursorElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 108 Source/core/svg/SVGCursorElement.cpp void SVGCursorElement::svgAttributeChanged(const QualifiedName& attrName) attrName 110 Source/core/svg/SVGCursorElement.cpp if (!isSupportedAttribute(attrName)) { attrName 111 Source/core/svg/SVGCursorElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 58 Source/core/svg/SVGElement.cpp void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const QualifiedName& attrName) attrName 62 Source/core/svg/SVGElement.cpp CSSPropertyID propertyId = cssPropertyID(attrName.localName()); attrName 63 Source/core/svg/SVGElement.cpp if (!propertyId && attrName == transform_originAttr) { attrName 69 Source/core/svg/SVGElement.cpp propertyNameToIdMap->set(attrName.localName().impl(), propertyId); attrName 351 Source/core/svg/SVGElement.cpp CSSPropertyID SVGElement::cssPropertyIdForSVGAttributeName(const QualifiedName& attrName) attrName 353 Source/core/svg/SVGElement.cpp if (!attrName.namespaceURI().isNull()) attrName 425 Source/core/svg/SVGElement.cpp return propertyNameToIdMap->get(attrName.localName().impl()); attrName 715 Source/core/svg/SVGElement.cpp bool SVGElement::isAnimatableCSSProperty(const QualifiedName& attrName) attrName 717 Source/core/svg/SVGElement.cpp return animatedPropertyTypeForCSSAttribute(attrName) != AnimatedUnknown; attrName 909 Source/core/svg/SVGElement.cpp void SVGElement::svgAttributeChanged(const QualifiedName& attrName) attrName 911 Source/core/svg/SVGElement.cpp CSSPropertyID propId = SVGElement::cssPropertyIdForSVGAttributeName(attrName); attrName 917 Source/core/svg/SVGElement.cpp if (attrName == HTMLNames::classAttr) { attrName 923 Source/core/svg/SVGElement.cpp if (isIdAttributeName(attrName)) { attrName 48 Source/core/svg/SVGElement.h void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const QualifiedName& attrName); attrName 52 Source/core/svg/SVGEllipseElement.cpp bool SVGEllipseElement::isSupportedAttribute(const QualifiedName& attrName) attrName 61 Source/core/svg/SVGEllipseElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 84 Source/core/svg/SVGEllipseElement.cpp void SVGEllipseElement::svgAttributeChanged(const QualifiedName& attrName) attrName 86 Source/core/svg/SVGEllipseElement.cpp if (!isSupportedAttribute(attrName)) { attrName 87 Source/core/svg/SVGEllipseElement.cpp SVGGeometryElement::svgAttributeChanged(attrName); attrName 93 Source/core/svg/SVGEllipseElement.cpp bool isLengthAttribute = attrName == SVGNames::cxAttr attrName 94 Source/core/svg/SVGEllipseElement.cpp || attrName == SVGNames::cyAttr attrName 95 Source/core/svg/SVGEllipseElement.cpp || attrName == SVGNames::rxAttr attrName 96 Source/core/svg/SVGEllipseElement.cpp || attrName == SVGNames::ryAttr; attrName 63 Source/core/svg/SVGFEBlendElement.cpp bool SVGFEBlendElement::isSupportedAttribute(const QualifiedName& attrName) attrName 71 Source/core/svg/SVGFEBlendElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 95 Source/core/svg/SVGFEBlendElement.cpp bool SVGFEBlendElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 98 Source/core/svg/SVGFEBlendElement.cpp if (attrName == SVGNames::modeAttr) attrName 105 Source/core/svg/SVGFEBlendElement.cpp void SVGFEBlendElement::svgAttributeChanged(const QualifiedName& attrName) attrName 107 Source/core/svg/SVGFEBlendElement.cpp if (!isSupportedAttribute(attrName)) { attrName 108 Source/core/svg/SVGFEBlendElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 114 Source/core/svg/SVGFEBlendElement.cpp if (attrName == SVGNames::modeAttr) { attrName 115 Source/core/svg/SVGFEBlendElement.cpp primitiveAttributeChanged(attrName); attrName 119 Source/core/svg/SVGFEBlendElement.cpp if (attrName == SVGNames::inAttr || attrName == SVGNames::in2Attr) { attrName 44 Source/core/svg/SVGFEBlendElement.h virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) OVERRIDE; attrName 63 Source/core/svg/SVGFEColorMatrixElement.cpp bool SVGFEColorMatrixElement::isSupportedAttribute(const QualifiedName& attrName) attrName 71 Source/core/svg/SVGFEColorMatrixElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 95 Source/core/svg/SVGFEColorMatrixElement.cpp bool SVGFEColorMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 98 Source/core/svg/SVGFEColorMatrixElement.cpp if (attrName == SVGNames::typeAttr) attrName 100 Source/core/svg/SVGFEColorMatrixElement.cpp if (attrName == SVGNames::valuesAttr) attrName 107 Source/core/svg/SVGFEColorMatrixElement.cpp void SVGFEColorMatrixElement::svgAttributeChanged(const QualifiedName& attrName) attrName 109 Source/core/svg/SVGFEColorMatrixElement.cpp if (!isSupportedAttribute(attrName)) { attrName 110 Source/core/svg/SVGFEColorMatrixElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 116 Source/core/svg/SVGFEColorMatrixElement.cpp if (attrName == SVGNames::typeAttr || attrName == SVGNames::valuesAttr) { attrName 117 Source/core/svg/SVGFEColorMatrixElement.cpp primitiveAttributeChanged(attrName); attrName 121 Source/core/svg/SVGFEColorMatrixElement.cpp if (attrName == SVGNames::inAttr) { attrName 49 Source/core/svg/SVGFEComponentTransferElement.cpp bool SVGFEComponentTransferElement::isSupportedAttribute(const QualifiedName& attrName) attrName 54 Source/core/svg/SVGFEComponentTransferElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 73 Source/core/svg/SVGFECompositeElement.cpp bool SVGFECompositeElement::isSupportedAttribute(const QualifiedName& attrName) attrName 85 Source/core/svg/SVGFECompositeElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 117 Source/core/svg/SVGFECompositeElement.cpp bool SVGFECompositeElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 120 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::operatorAttr) attrName 122 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::k1Attr) attrName 124 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::k2Attr) attrName 126 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::k3Attr) attrName 128 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::k4Attr) attrName 136 Source/core/svg/SVGFECompositeElement.cpp void SVGFECompositeElement::svgAttributeChanged(const QualifiedName& attrName) attrName 138 Source/core/svg/SVGFECompositeElement.cpp if (!isSupportedAttribute(attrName)) { attrName 139 Source/core/svg/SVGFECompositeElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 145 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::operatorAttr attrName 146 Source/core/svg/SVGFECompositeElement.cpp || attrName == SVGNames::k1Attr attrName 147 Source/core/svg/SVGFECompositeElement.cpp || attrName == SVGNames::k2Attr attrName 148 Source/core/svg/SVGFECompositeElement.cpp || attrName == SVGNames::k3Attr attrName 149 Source/core/svg/SVGFECompositeElement.cpp || attrName == SVGNames::k4Attr) { attrName 150 Source/core/svg/SVGFECompositeElement.cpp primitiveAttributeChanged(attrName); attrName 154 Source/core/svg/SVGFECompositeElement.cpp if (attrName == SVGNames::inAttr || attrName == SVGNames::in2Attr) { attrName 79 Source/core/svg/SVGFEConvolveMatrixElement.cpp bool SVGFEConvolveMatrixElement::isSupportedAttribute(const QualifiedName& attrName) attrName 94 Source/core/svg/SVGFEConvolveMatrixElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 137 Source/core/svg/SVGFEConvolveMatrixElement.cpp bool SVGFEConvolveMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 140 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::edgeModeAttr) attrName 142 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::divisorAttr) attrName 144 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::biasAttr) attrName 146 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::targetXAttr) attrName 148 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::targetYAttr) attrName 150 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::kernelUnitLengthAttr) attrName 152 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::preserveAlphaAttr) attrName 159 Source/core/svg/SVGFEConvolveMatrixElement.cpp void SVGFEConvolveMatrixElement::svgAttributeChanged(const QualifiedName& attrName) attrName 161 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (!isSupportedAttribute(attrName)) { attrName 162 Source/core/svg/SVGFEConvolveMatrixElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 168 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::edgeModeAttr attrName 169 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::divisorAttr attrName 170 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::biasAttr attrName 171 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::targetXAttr attrName 172 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::targetYAttr attrName 173 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::kernelUnitLengthAttr attrName 174 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::preserveAlphaAttr) { attrName 175 Source/core/svg/SVGFEConvolveMatrixElement.cpp primitiveAttributeChanged(attrName); attrName 179 Source/core/svg/SVGFEConvolveMatrixElement.cpp if (attrName == SVGNames::inAttr attrName 180 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::orderAttr attrName 181 Source/core/svg/SVGFEConvolveMatrixElement.cpp || attrName == SVGNames::kernelMatrixAttr) { attrName 53 Source/core/svg/SVGFEDiffuseLightingElement.cpp bool SVGFEDiffuseLightingElement::isSupportedAttribute(const QualifiedName& attrName) attrName 63 Source/core/svg/SVGFEDiffuseLightingElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 89 Source/core/svg/SVGFEDiffuseLightingElement.cpp bool SVGFEDiffuseLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 93 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::lighting_colorAttr) { attrName 99 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::surfaceScaleAttr) attrName 101 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::diffuseConstantAttr) attrName 109 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::azimuthAttr) attrName 111 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::elevationAttr) attrName 113 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::xAttr) attrName 115 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::yAttr) attrName 117 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::zAttr) attrName 119 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::pointsAtXAttr) attrName 121 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::pointsAtYAttr) attrName 123 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::pointsAtZAttr) attrName 125 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::specularExponentAttr) attrName 127 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::limitingConeAngleAttr) attrName 134 Source/core/svg/SVGFEDiffuseLightingElement.cpp void SVGFEDiffuseLightingElement::svgAttributeChanged(const QualifiedName& attrName) attrName 136 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (!isSupportedAttribute(attrName)) { attrName 137 Source/core/svg/SVGFEDiffuseLightingElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 143 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::surfaceScaleAttr attrName 144 Source/core/svg/SVGFEDiffuseLightingElement.cpp || attrName == SVGNames::diffuseConstantAttr attrName 145 Source/core/svg/SVGFEDiffuseLightingElement.cpp || attrName == SVGNames::kernelUnitLengthAttr attrName 146 Source/core/svg/SVGFEDiffuseLightingElement.cpp || attrName == SVGNames::lighting_colorAttr) { attrName 147 Source/core/svg/SVGFEDiffuseLightingElement.cpp primitiveAttributeChanged(attrName); attrName 151 Source/core/svg/SVGFEDiffuseLightingElement.cpp if (attrName == SVGNames::inAttr) { attrName 159 Source/core/svg/SVGFEDiffuseLightingElement.cpp void SVGFEDiffuseLightingElement::lightElementAttributeChanged(const SVGFELightElement* lightElement, const QualifiedName& attrName) attrName 165 Source/core/svg/SVGFEDiffuseLightingElement.cpp primitiveAttributeChanged(attrName); attrName 66 Source/core/svg/SVGFEDisplacementMapElement.cpp bool SVGFEDisplacementMapElement::isSupportedAttribute(const QualifiedName& attrName) attrName 76 Source/core/svg/SVGFEDisplacementMapElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 104 Source/core/svg/SVGFEDisplacementMapElement.cpp bool SVGFEDisplacementMapElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 107 Source/core/svg/SVGFEDisplacementMapElement.cpp if (attrName == SVGNames::xChannelSelectorAttr) attrName 109 Source/core/svg/SVGFEDisplacementMapElement.cpp if (attrName == SVGNames::yChannelSelectorAttr) attrName 111 Source/core/svg/SVGFEDisplacementMapElement.cpp if (attrName == SVGNames::scaleAttr) attrName 118 Source/core/svg/SVGFEDisplacementMapElement.cpp void SVGFEDisplacementMapElement::svgAttributeChanged(const QualifiedName& attrName) attrName 120 Source/core/svg/SVGFEDisplacementMapElement.cpp if (!isSupportedAttribute(attrName)) { attrName 121 Source/core/svg/SVGFEDisplacementMapElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 127 Source/core/svg/SVGFEDisplacementMapElement.cpp if (attrName == SVGNames::xChannelSelectorAttr || attrName == SVGNames::yChannelSelectorAttr || attrName == SVGNames::scaleAttr) { attrName 128 Source/core/svg/SVGFEDisplacementMapElement.cpp primitiveAttributeChanged(attrName); attrName 132 Source/core/svg/SVGFEDisplacementMapElement.cpp if (attrName == SVGNames::inAttr || attrName == SVGNames::in2Attr) { attrName 49 Source/core/svg/SVGFEDisplacementMapElement.h virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) OVERRIDE; attrName 60 Source/core/svg/SVGFEDropShadowElement.cpp bool SVGFEDropShadowElement::isSupportedAttribute(const QualifiedName& attrName) attrName 69 Source/core/svg/SVGFEDropShadowElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 95 Source/core/svg/SVGFEDropShadowElement.cpp void SVGFEDropShadowElement::svgAttributeChanged(const QualifiedName& attrName) attrName 97 Source/core/svg/SVGFEDropShadowElement.cpp if (!isSupportedAttribute(attrName)) { attrName 98 Source/core/svg/SVGFEDropShadowElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 104 Source/core/svg/SVGFEDropShadowElement.cpp if (attrName == SVGNames::inAttr attrName 105 Source/core/svg/SVGFEDropShadowElement.cpp || attrName == SVGNames::stdDeviationAttr attrName 106 Source/core/svg/SVGFEDropShadowElement.cpp || attrName == SVGNames::dxAttr attrName 107 Source/core/svg/SVGFEDropShadowElement.cpp || attrName == SVGNames::dyAttr) { attrName 43 Source/core/svg/SVGFEFloodElement.cpp bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 51 Source/core/svg/SVGFEFloodElement.cpp if (attrName == SVGNames::flood_colorAttr) attrName 53 Source/core/svg/SVGFEFloodElement.cpp if (attrName == SVGNames::flood_opacityAttr) attrName 36 Source/core/svg/SVGFEFloodElement.h virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) OVERRIDE; attrName 56 Source/core/svg/SVGFEGaussianBlurElement.cpp bool SVGFEGaussianBlurElement::isSupportedAttribute(const QualifiedName& attrName) attrName 63 Source/core/svg/SVGFEGaussianBlurElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 85 Source/core/svg/SVGFEGaussianBlurElement.cpp void SVGFEGaussianBlurElement::svgAttributeChanged(const QualifiedName& attrName) attrName 87 Source/core/svg/SVGFEGaussianBlurElement.cpp if (!isSupportedAttribute(attrName)) { attrName 88 Source/core/svg/SVGFEGaussianBlurElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 94 Source/core/svg/SVGFEGaussianBlurElement.cpp if (attrName == SVGNames::inAttr || attrName == SVGNames::stdDeviationAttr) { attrName 107 Source/core/svg/SVGFEImageElement.cpp bool SVGFEImageElement::isSupportedAttribute(const QualifiedName& attrName) attrName 114 Source/core/svg/SVGFEImageElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 136 Source/core/svg/SVGFEImageElement.cpp void SVGFEImageElement::svgAttributeChanged(const QualifiedName& attrName) attrName 138 Source/core/svg/SVGFEImageElement.cpp if (!isSupportedAttribute(attrName)) { attrName 139 Source/core/svg/SVGFEImageElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 145 Source/core/svg/SVGFEImageElement.cpp if (attrName == SVGNames::preserveAspectRatioAttr) { attrName 150 Source/core/svg/SVGFEImageElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 73 Source/core/svg/SVGFELightElement.cpp bool SVGFELightElement::isSupportedAttribute(const QualifiedName& attrName) attrName 88 Source/core/svg/SVGFELightElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 126 Source/core/svg/SVGFELightElement.cpp void SVGFELightElement::svgAttributeChanged(const QualifiedName& attrName) attrName 128 Source/core/svg/SVGFELightElement.cpp if (!isSupportedAttribute(attrName)) { attrName 129 Source/core/svg/SVGFELightElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 135 Source/core/svg/SVGFELightElement.cpp if (attrName == SVGNames::azimuthAttr attrName 136 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::elevationAttr attrName 137 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::xAttr attrName 138 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::yAttr attrName 139 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::zAttr attrName 140 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::pointsAtXAttr attrName 141 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::pointsAtYAttr attrName 142 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::pointsAtZAttr attrName 143 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::specularExponentAttr attrName 144 Source/core/svg/SVGFELightElement.cpp || attrName == SVGNames::limitingConeAngleAttr) { attrName 154 Source/core/svg/SVGFELightElement.cpp toSVGFEDiffuseLightingElement(*parent).lightElementAttributeChanged(this, attrName); attrName 158 Source/core/svg/SVGFELightElement.cpp toSVGFESpecularLightingElement(*parent).lightElementAttributeChanged(this, attrName); attrName 43 Source/core/svg/SVGFEMergeNodeElement.cpp bool SVGFEMergeNodeElement::isSupportedAttribute(const QualifiedName& attrName) attrName 48 Source/core/svg/SVGFEMergeNodeElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 68 Source/core/svg/SVGFEMergeNodeElement.cpp void SVGFEMergeNodeElement::svgAttributeChanged(const QualifiedName& attrName) attrName 70 Source/core/svg/SVGFEMergeNodeElement.cpp if (!isSupportedAttribute(attrName)) { attrName 71 Source/core/svg/SVGFEMergeNodeElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 77 Source/core/svg/SVGFEMergeNodeElement.cpp if (attrName == SVGNames::inAttr) { attrName 68 Source/core/svg/SVGFEMorphologyElement.cpp bool SVGFEMorphologyElement::isSupportedAttribute(const QualifiedName& attrName) attrName 76 Source/core/svg/SVGFEMorphologyElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 100 Source/core/svg/SVGFEMorphologyElement.cpp bool SVGFEMorphologyElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 103 Source/core/svg/SVGFEMorphologyElement.cpp if (attrName == SVGNames::operatorAttr) attrName 105 Source/core/svg/SVGFEMorphologyElement.cpp if (attrName == SVGNames::radiusAttr) { attrName 116 Source/core/svg/SVGFEMorphologyElement.cpp void SVGFEMorphologyElement::svgAttributeChanged(const QualifiedName& attrName) attrName 118 Source/core/svg/SVGFEMorphologyElement.cpp if (!isSupportedAttribute(attrName)) { attrName 119 Source/core/svg/SVGFEMorphologyElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 125 Source/core/svg/SVGFEMorphologyElement.cpp if (attrName == SVGNames::operatorAttr || attrName == SVGNames::radiusAttr) { attrName 126 Source/core/svg/SVGFEMorphologyElement.cpp primitiveAttributeChanged(attrName); attrName 130 Source/core/svg/SVGFEMorphologyElement.cpp if (attrName == SVGNames::inAttr) { attrName 50 Source/core/svg/SVGFEOffsetElement.cpp bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName) attrName 58 Source/core/svg/SVGFEOffsetElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 82 Source/core/svg/SVGFEOffsetElement.cpp void SVGFEOffsetElement::svgAttributeChanged(const QualifiedName& attrName) attrName 84 Source/core/svg/SVGFEOffsetElement.cpp if (!isSupportedAttribute(attrName)) { attrName 85 Source/core/svg/SVGFEOffsetElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 91 Source/core/svg/SVGFEOffsetElement.cpp if (attrName == SVGNames::inAttr || attrName == SVGNames::dxAttr || attrName == SVGNames::dyAttr) { attrName 56 Source/core/svg/SVGFESpecularLightingElement.cpp bool SVGFESpecularLightingElement::isSupportedAttribute(const QualifiedName& attrName) attrName 66 Source/core/svg/SVGFESpecularLightingElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 94 Source/core/svg/SVGFESpecularLightingElement.cpp bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 98 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::lighting_colorAttr) { attrName 104 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::surfaceScaleAttr) attrName 106 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::specularConstantAttr) attrName 108 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::specularExponentAttr) attrName 116 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::azimuthAttr) attrName 118 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::elevationAttr) attrName 120 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::xAttr) attrName 122 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::yAttr) attrName 124 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::zAttr) attrName 126 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::pointsAtXAttr) attrName 128 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::pointsAtYAttr) attrName 130 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::pointsAtZAttr) attrName 132 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::specularExponentAttr) attrName 134 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::limitingConeAngleAttr) attrName 141 Source/core/svg/SVGFESpecularLightingElement.cpp void SVGFESpecularLightingElement::svgAttributeChanged(const QualifiedName& attrName) attrName 143 Source/core/svg/SVGFESpecularLightingElement.cpp if (!isSupportedAttribute(attrName)) { attrName 144 Source/core/svg/SVGFESpecularLightingElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 150 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::surfaceScaleAttr attrName 151 Source/core/svg/SVGFESpecularLightingElement.cpp || attrName == SVGNames::specularConstantAttr attrName 152 Source/core/svg/SVGFESpecularLightingElement.cpp || attrName == SVGNames::specularExponentAttr attrName 153 Source/core/svg/SVGFESpecularLightingElement.cpp || attrName == SVGNames::kernelUnitLengthAttr) { attrName 154 Source/core/svg/SVGFESpecularLightingElement.cpp primitiveAttributeChanged(attrName); attrName 158 Source/core/svg/SVGFESpecularLightingElement.cpp if (attrName == SVGNames::inAttr) { attrName 166 Source/core/svg/SVGFESpecularLightingElement.cpp void SVGFESpecularLightingElement::lightElementAttributeChanged(const SVGFELightElement* lightElement, const QualifiedName& attrName) attrName 172 Source/core/svg/SVGFESpecularLightingElement.cpp primitiveAttributeChanged(attrName); attrName 45 Source/core/svg/SVGFETileElement.cpp bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) attrName 50 Source/core/svg/SVGFETileElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 70 Source/core/svg/SVGFETileElement.cpp void SVGFETileElement::svgAttributeChanged(const QualifiedName& attrName) attrName 72 Source/core/svg/SVGFETileElement.cpp if (!isSupportedAttribute(attrName)) { attrName 73 Source/core/svg/SVGFETileElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 79 Source/core/svg/SVGFETileElement.cpp if (attrName == SVGNames::inAttr) { attrName 75 Source/core/svg/SVGFETurbulenceElement.cpp bool SVGFETurbulenceElement::isSupportedAttribute(const QualifiedName& attrName) attrName 85 Source/core/svg/SVGFETurbulenceElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 113 Source/core/svg/SVGFETurbulenceElement.cpp bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) attrName 116 Source/core/svg/SVGFETurbulenceElement.cpp if (attrName == SVGNames::typeAttr) attrName 118 Source/core/svg/SVGFETurbulenceElement.cpp if (attrName == SVGNames::stitchTilesAttr) attrName 120 Source/core/svg/SVGFETurbulenceElement.cpp if (attrName == SVGNames::baseFrequencyAttr) { attrName 125 Source/core/svg/SVGFETurbulenceElement.cpp if (attrName == SVGNames::seedAttr) attrName 127 Source/core/svg/SVGFETurbulenceElement.cpp if (attrName == SVGNames::numOctavesAttr) attrName 134 Source/core/svg/SVGFETurbulenceElement.cpp void SVGFETurbulenceElement::svgAttributeChanged(const QualifiedName& attrName) attrName 136 Source/core/svg/SVGFETurbulenceElement.cpp if (!isSupportedAttribute(attrName)) { attrName 137 Source/core/svg/SVGFETurbulenceElement.cpp SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName); attrName 143 Source/core/svg/SVGFETurbulenceElement.cpp if (attrName == SVGNames::baseFrequencyAttr attrName 144 Source/core/svg/SVGFETurbulenceElement.cpp || attrName == SVGNames::numOctavesAttr attrName 145 Source/core/svg/SVGFETurbulenceElement.cpp || attrName == SVGNames::seedAttr attrName 146 Source/core/svg/SVGFETurbulenceElement.cpp || attrName == SVGNames::stitchTilesAttr attrName 147 Source/core/svg/SVGFETurbulenceElement.cpp || attrName == SVGNames::typeAttr) { attrName 148 Source/core/svg/SVGFETurbulenceElement.cpp primitiveAttributeChanged(attrName); attrName 58 Source/core/svg/SVGFETurbulenceElement.h virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) OVERRIDE; attrName 78 Source/core/svg/SVGFilterElement.cpp bool SVGFilterElement::isSupportedAttribute(const QualifiedName& attrName) attrName 91 Source/core/svg/SVGFilterElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 121 Source/core/svg/SVGFilterElement.cpp void SVGFilterElement::svgAttributeChanged(const QualifiedName& attrName) attrName 123 Source/core/svg/SVGFilterElement.cpp if (!isSupportedAttribute(attrName)) { attrName 124 Source/core/svg/SVGFilterElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 130 Source/core/svg/SVGFilterElement.cpp if (attrName == SVGNames::xAttr attrName 131 Source/core/svg/SVGFilterElement.cpp || attrName == SVGNames::yAttr attrName 132 Source/core/svg/SVGFilterElement.cpp || attrName == SVGNames::widthAttr attrName 133 Source/core/svg/SVGFilterElement.cpp || attrName == SVGNames::heightAttr) attrName 57 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp bool SVGFilterPrimitiveStandardAttributes::isSupportedAttribute(const QualifiedName& attrName) attrName 67 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 99 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp void SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(const QualifiedName& attrName) attrName 101 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp if (!isSupportedAttribute(attrName)) { attrName 102 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp SVGElement::svgAttributeChanged(attrName); attrName 56 Source/core/svg/SVGFitToViewBox.cpp bool SVGFitToViewBox::isKnownAttribute(const QualifiedName& attrName) attrName 58 Source/core/svg/SVGFitToViewBox.cpp return attrName == SVGNames::viewBoxAttr || attrName == SVGNames::preserveAspectRatioAttr; attrName 64 Source/core/svg/SVGFontFaceElement.cpp static CSSPropertyID cssPropertyIdForFontFaceAttributeName(const QualifiedName& attrName) attrName 66 Source/core/svg/SVGFontFaceElement.cpp if (!attrName.namespaceURI().isNull()) attrName 109 Source/core/svg/SVGFontFaceElement.cpp return propertyNameToIdMap->get(attrName.localName().impl()); attrName 56 Source/core/svg/SVGForeignObjectElement.cpp bool SVGForeignObjectElement::isSupportedAttribute(const QualifiedName& attrName) attrName 65 Source/core/svg/SVGForeignObjectElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 88 Source/core/svg/SVGForeignObjectElement.cpp void SVGForeignObjectElement::svgAttributeChanged(const QualifiedName& attrName) attrName 90 Source/core/svg/SVGForeignObjectElement.cpp if (!isSupportedAttribute(attrName)) { attrName 91 Source/core/svg/SVGForeignObjectElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 97 Source/core/svg/SVGForeignObjectElement.cpp bool isLengthAttribute = attrName == SVGNames::xAttr attrName 98 Source/core/svg/SVGForeignObjectElement.cpp || attrName == SVGNames::yAttr attrName 99 Source/core/svg/SVGForeignObjectElement.cpp || attrName == SVGNames::widthAttr attrName 100 Source/core/svg/SVGForeignObjectElement.cpp || attrName == SVGNames::heightAttr; attrName 44 Source/core/svg/SVGGElement.cpp bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName) attrName 47 Source/core/svg/SVGGElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 60 Source/core/svg/SVGGElement.cpp void SVGGElement::svgAttributeChanged(const QualifiedName& attrName) attrName 62 Source/core/svg/SVGGElement.cpp if (!isSupportedAttribute(attrName)) { attrName 63 Source/core/svg/SVGGElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 63 Source/core/svg/SVGGradientElement.cpp bool SVGGradientElement::isSupportedAttribute(const QualifiedName& attrName) attrName 72 Source/core/svg/SVGGradientElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 97 Source/core/svg/SVGGradientElement.cpp void SVGGradientElement::svgAttributeChanged(const QualifiedName& attrName) attrName 99 Source/core/svg/SVGGradientElement.cpp if (!isSupportedAttribute(attrName)) { attrName 100 Source/core/svg/SVGGradientElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 163 Source/core/svg/SVGGraphicsElement.cpp bool SVGGraphicsElement::isSupportedAttribute(const QualifiedName& attrName) attrName 170 Source/core/svg/SVGGraphicsElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 192 Source/core/svg/SVGGraphicsElement.cpp void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName) attrName 194 Source/core/svg/SVGGraphicsElement.cpp if (!isSupportedAttribute(attrName)) { attrName 195 Source/core/svg/SVGGraphicsElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 202 Source/core/svg/SVGGraphicsElement.cpp if (SVGTests::isKnownAttribute(attrName)) { attrName 211 Source/core/svg/SVGGraphicsElement.cpp if (attrName == SVGNames::transformAttr) { attrName 72 Source/core/svg/SVGImageElement.cpp bool SVGImageElement::isSupportedAttribute(const QualifiedName& attrName) attrName 83 Source/core/svg/SVGImageElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 127 Source/core/svg/SVGImageElement.cpp void SVGImageElement::svgAttributeChanged(const QualifiedName& attrName) attrName 129 Source/core/svg/SVGImageElement.cpp if (!isSupportedAttribute(attrName)) { attrName 130 Source/core/svg/SVGImageElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 136 Source/core/svg/SVGImageElement.cpp bool isLengthAttribute = attrName == SVGNames::xAttr attrName 137 Source/core/svg/SVGImageElement.cpp || attrName == SVGNames::yAttr attrName 138 Source/core/svg/SVGImageElement.cpp || attrName == SVGNames::widthAttr attrName 139 Source/core/svg/SVGImageElement.cpp || attrName == SVGNames::heightAttr; attrName 144 Source/core/svg/SVGImageElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 162 Source/core/svg/SVGImageElement.cpp if (attrName == SVGNames::preserveAspectRatioAttr) { attrName 349 Source/core/svg/SVGLength.cpp SVGLengthMode SVGLength::lengthModeForAnimatedLengthAttribute(const QualifiedName& attrName) attrName 380 Source/core/svg/SVGLength.cpp if (s_lengthModeMap.contains(attrName)) attrName 381 Source/core/svg/SVGLength.cpp return s_lengthModeMap.get(attrName); attrName 51 Source/core/svg/SVGLineElement.cpp bool SVGLineElement::isSupportedAttribute(const QualifiedName& attrName) attrName 60 Source/core/svg/SVGLineElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 83 Source/core/svg/SVGLineElement.cpp void SVGLineElement::svgAttributeChanged(const QualifiedName& attrName) attrName 85 Source/core/svg/SVGLineElement.cpp if (!isSupportedAttribute(attrName)) { attrName 86 Source/core/svg/SVGLineElement.cpp SVGGeometryElement::svgAttributeChanged(attrName); attrName 92 Source/core/svg/SVGLineElement.cpp bool isLengthAttribute = attrName == SVGNames::x1Attr attrName 93 Source/core/svg/SVGLineElement.cpp || attrName == SVGNames::y1Attr attrName 94 Source/core/svg/SVGLineElement.cpp || attrName == SVGNames::x2Attr attrName 95 Source/core/svg/SVGLineElement.cpp || attrName == SVGNames::y2Attr; attrName 59 Source/core/svg/SVGLinearGradientElement.cpp bool SVGLinearGradientElement::isSupportedAttribute(const QualifiedName& attrName) attrName 68 Source/core/svg/SVGLinearGradientElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 91 Source/core/svg/SVGLinearGradientElement.cpp void SVGLinearGradientElement::svgAttributeChanged(const QualifiedName& attrName) attrName 93 Source/core/svg/SVGLinearGradientElement.cpp if (!isSupportedAttribute(attrName)) { attrName 94 Source/core/svg/SVGLinearGradientElement.cpp SVGGradientElement::svgAttributeChanged(attrName); attrName 97 Source/core/svg/SVGMPathElement.cpp bool SVGMPathElement::isSupportedAttribute(const QualifiedName& attrName) attrName 103 Source/core/svg/SVGMPathElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 120 Source/core/svg/SVGMPathElement.cpp void SVGMPathElement::svgAttributeChanged(const QualifiedName& attrName) attrName 122 Source/core/svg/SVGMPathElement.cpp if (!isSupportedAttribute(attrName)) { attrName 123 Source/core/svg/SVGMPathElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 129 Source/core/svg/SVGMPathElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 79 Source/core/svg/SVGMarkerElement.cpp bool SVGMarkerElement::isSupportedAttribute(const QualifiedName& attrName) attrName 91 Source/core/svg/SVGMarkerElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 119 Source/core/svg/SVGMarkerElement.cpp void SVGMarkerElement::svgAttributeChanged(const QualifiedName& attrName) attrName 121 Source/core/svg/SVGMarkerElement.cpp if (!isSupportedAttribute(attrName)) { attrName 122 Source/core/svg/SVGMarkerElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 128 Source/core/svg/SVGMarkerElement.cpp if (attrName == SVGNames::refXAttr attrName 129 Source/core/svg/SVGMarkerElement.cpp || attrName == SVGNames::refYAttr attrName 130 Source/core/svg/SVGMarkerElement.cpp || attrName == SVGNames::markerWidthAttr attrName 131 Source/core/svg/SVGMarkerElement.cpp || attrName == SVGNames::markerHeightAttr) attrName 66 Source/core/svg/SVGMaskElement.cpp bool SVGMaskElement::isSupportedAttribute(const QualifiedName& attrName) attrName 78 Source/core/svg/SVGMaskElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 106 Source/core/svg/SVGMaskElement.cpp void SVGMaskElement::svgAttributeChanged(const QualifiedName& attrName) attrName 108 Source/core/svg/SVGMaskElement.cpp if (!isSupportedAttribute(attrName)) { attrName 109 Source/core/svg/SVGMaskElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 115 Source/core/svg/SVGMaskElement.cpp if (attrName == SVGNames::xAttr attrName 116 Source/core/svg/SVGMaskElement.cpp || attrName == SVGNames::yAttr attrName 117 Source/core/svg/SVGMaskElement.cpp || attrName == SVGNames::widthAttr attrName 118 Source/core/svg/SVGMaskElement.cpp || attrName == SVGNames::heightAttr) attrName 185 Source/core/svg/SVGPathElement.cpp bool SVGPathElement::isSupportedAttribute(const QualifiedName& attrName) attrName 192 Source/core/svg/SVGPathElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 217 Source/core/svg/SVGPathElement.cpp void SVGPathElement::svgAttributeChanged(const QualifiedName& attrName) attrName 219 Source/core/svg/SVGPathElement.cpp if (!isSupportedAttribute(attrName)) { attrName 220 Source/core/svg/SVGPathElement.cpp SVGGeometryElement::svgAttributeChanged(attrName); attrName 228 Source/core/svg/SVGPathElement.cpp if (attrName == SVGNames::dAttr) { attrName 64 Source/core/svg/SVGPatternElement.cpp bool SVGPatternElement::isSupportedAttribute(const QualifiedName& attrName) attrName 79 Source/core/svg/SVGPatternElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 112 Source/core/svg/SVGPatternElement.cpp void SVGPatternElement::svgAttributeChanged(const QualifiedName& attrName) attrName 114 Source/core/svg/SVGPatternElement.cpp if (!isSupportedAttribute(attrName)) { attrName 115 Source/core/svg/SVGPatternElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 121 Source/core/svg/SVGPatternElement.cpp if (attrName == SVGNames::xAttr attrName 122 Source/core/svg/SVGPatternElement.cpp || attrName == SVGNames::yAttr attrName 123 Source/core/svg/SVGPatternElement.cpp || attrName == SVGNames::widthAttr attrName 124 Source/core/svg/SVGPatternElement.cpp || attrName == SVGNames::heightAttr) attrName 40 Source/core/svg/SVGPolyElement.cpp bool SVGPolyElement::isSupportedAttribute(const QualifiedName& attrName) attrName 46 Source/core/svg/SVGPolyElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 66 Source/core/svg/SVGPolyElement.cpp void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName) attrName 68 Source/core/svg/SVGPolyElement.cpp if (!isSupportedAttribute(attrName)) { attrName 69 Source/core/svg/SVGPolyElement.cpp SVGGeometryElement::svgAttributeChanged(attrName); attrName 79 Source/core/svg/SVGPolyElement.cpp if (attrName == SVGNames::pointsAttr) { attrName 67 Source/core/svg/SVGRadialGradientElement.cpp bool SVGRadialGradientElement::isSupportedAttribute(const QualifiedName& attrName) attrName 78 Source/core/svg/SVGRadialGradientElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 105 Source/core/svg/SVGRadialGradientElement.cpp void SVGRadialGradientElement::svgAttributeChanged(const QualifiedName& attrName) attrName 107 Source/core/svg/SVGRadialGradientElement.cpp if (!isSupportedAttribute(attrName)) { attrName 108 Source/core/svg/SVGRadialGradientElement.cpp SVGGradientElement::svgAttributeChanged(attrName); attrName 56 Source/core/svg/SVGRectElement.cpp bool SVGRectElement::isSupportedAttribute(const QualifiedName& attrName) attrName 67 Source/core/svg/SVGRectElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 94 Source/core/svg/SVGRectElement.cpp void SVGRectElement::svgAttributeChanged(const QualifiedName& attrName) attrName 96 Source/core/svg/SVGRectElement.cpp if (!isSupportedAttribute(attrName)) { attrName 97 Source/core/svg/SVGRectElement.cpp SVGGeometryElement::svgAttributeChanged(attrName); attrName 103 Source/core/svg/SVGRectElement.cpp bool isLengthAttribute = attrName == SVGNames::xAttr attrName 104 Source/core/svg/SVGRectElement.cpp || attrName == SVGNames::yAttr attrName 105 Source/core/svg/SVGRectElement.cpp || attrName == SVGNames::widthAttr attrName 106 Source/core/svg/SVGRectElement.cpp || attrName == SVGNames::heightAttr attrName 107 Source/core/svg/SVGRectElement.cpp || attrName == SVGNames::rxAttr attrName 108 Source/core/svg/SVGRectElement.cpp || attrName == SVGNames::ryAttr; attrName 285 Source/core/svg/SVGSVGElement.cpp void SVGSVGElement::svgAttributeChanged(const QualifiedName& attrName) attrName 288 Source/core/svg/SVGSVGElement.cpp bool widthChanged = attrName == SVGNames::widthAttr; attrName 290 Source/core/svg/SVGSVGElement.cpp || attrName == SVGNames::heightAttr attrName 291 Source/core/svg/SVGSVGElement.cpp || attrName == SVGNames::xAttr attrName 292 Source/core/svg/SVGSVGElement.cpp || attrName == SVGNames::yAttr) { attrName 306 Source/core/svg/SVGSVGElement.cpp if (SVGFitToViewBox::isKnownAttribute(attrName)) { attrName 315 Source/core/svg/SVGSVGElement.cpp || SVGZoomAndPan::isKnownAttribute(attrName)) { attrName 321 Source/core/svg/SVGSVGElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 49 Source/core/svg/SVGScriptElement.cpp bool SVGScriptElement::isSupportedAttribute(const QualifiedName& attrName) attrName 57 Source/core/svg/SVGScriptElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 81 Source/core/svg/SVGScriptElement.cpp void SVGScriptElement::svgAttributeChanged(const QualifiedName& attrName) attrName 83 Source/core/svg/SVGScriptElement.cpp if (!isSupportedAttribute(attrName)) { attrName 84 Source/core/svg/SVGScriptElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 90 Source/core/svg/SVGScriptElement.cpp if (attrName == SVGNames::typeAttr || attrName == HTMLNames::onerrorAttr) attrName 93 Source/core/svg/SVGScriptElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 45 Source/core/svg/SVGStopElement.cpp bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) attrName 50 Source/core/svg/SVGStopElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 70 Source/core/svg/SVGStopElement.cpp void SVGStopElement::svgAttributeChanged(const QualifiedName& attrName) attrName 72 Source/core/svg/SVGStopElement.cpp if (!isSupportedAttribute(attrName)) { attrName 73 Source/core/svg/SVGStopElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 82 Source/core/svg/SVGStopElement.cpp if (attrName == SVGNames::offsetAttr) { attrName 97 Source/core/svg/SVGStyleElement.cpp bool SVGStyleElement::isSupportedAttribute(const QualifiedName& attrName) attrName 102 Source/core/svg/SVGStyleElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 43 Source/core/svg/SVGSymbolElement.cpp bool SVGSymbolElement::isSupportedAttribute(const QualifiedName& attrName) attrName 49 Source/core/svg/SVGSymbolElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 68 Source/core/svg/SVGSymbolElement.cpp void SVGSymbolElement::svgAttributeChanged(const QualifiedName& attrName) attrName 70 Source/core/svg/SVGSymbolElement.cpp if (!isSupportedAttribute(attrName)) { attrName 71 Source/core/svg/SVGSymbolElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 78 Source/core/svg/SVGSymbolElement.cpp if (attrName == SVGNames::viewBoxAttr) attrName 105 Source/core/svg/SVGTests.cpp bool SVGTests::isKnownAttribute(const QualifiedName& attrName) attrName 107 Source/core/svg/SVGTests.cpp return attrName == SVGNames::requiredFeaturesAttr attrName 108 Source/core/svg/SVGTests.cpp || attrName == SVGNames::requiredExtensionsAttr attrName 109 Source/core/svg/SVGTests.cpp || attrName == SVGNames::systemLanguageAttr; attrName 200 Source/core/svg/SVGTextContentElement.cpp bool SVGTextContentElement::isSupportedAttribute(const QualifiedName& attrName) attrName 208 Source/core/svg/SVGTextContentElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 249 Source/core/svg/SVGTextContentElement.cpp void SVGTextContentElement::svgAttributeChanged(const QualifiedName& attrName) attrName 251 Source/core/svg/SVGTextContentElement.cpp if (!isSupportedAttribute(attrName)) { attrName 252 Source/core/svg/SVGTextContentElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 256 Source/core/svg/SVGTextContentElement.cpp if (attrName == SVGNames::textLengthAttr) attrName 83 Source/core/svg/SVGTextPathElement.cpp bool SVGTextPathElement::isSupportedAttribute(const QualifiedName& attrName) attrName 92 Source/core/svg/SVGTextPathElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 114 Source/core/svg/SVGTextPathElement.cpp void SVGTextPathElement::svgAttributeChanged(const QualifiedName& attrName) attrName 116 Source/core/svg/SVGTextPathElement.cpp if (!isSupportedAttribute(attrName)) { attrName 117 Source/core/svg/SVGTextPathElement.cpp SVGTextContentElement::svgAttributeChanged(attrName); attrName 123 Source/core/svg/SVGTextPathElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 128 Source/core/svg/SVGTextPathElement.cpp if (attrName == SVGNames::startOffsetAttr) attrName 51 Source/core/svg/SVGTextPositioningElement.cpp bool SVGTextPositioningElement::isSupportedAttribute(const QualifiedName& attrName) attrName 61 Source/core/svg/SVGTextPositioningElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 89 Source/core/svg/SVGTextPositioningElement.cpp void SVGTextPositioningElement::svgAttributeChanged(const QualifiedName& attrName) attrName 91 Source/core/svg/SVGTextPositioningElement.cpp if (!isSupportedAttribute(attrName)) { attrName 92 Source/core/svg/SVGTextPositioningElement.cpp SVGTextContentElement::svgAttributeChanged(attrName); attrName 98 Source/core/svg/SVGTextPositioningElement.cpp bool updateRelativeLengths = attrName == SVGNames::xAttr attrName 99 Source/core/svg/SVGTextPositioningElement.cpp || attrName == SVGNames::yAttr attrName 100 Source/core/svg/SVGTextPositioningElement.cpp || attrName == SVGNames::dxAttr attrName 101 Source/core/svg/SVGTextPositioningElement.cpp || attrName == SVGNames::dyAttr; attrName 110 Source/core/svg/SVGTextPositioningElement.cpp if (updateRelativeLengths || attrName == SVGNames::rotateAttr) { attrName 37 Source/core/svg/SVGURIReference.cpp bool SVGURIReference::isKnownAttribute(const QualifiedName& attrName) attrName 39 Source/core/svg/SVGURIReference.cpp return attrName.matches(XLinkNames::hrefAttr); attrName 108 Source/core/svg/SVGUseElement.cpp bool SVGUseElement::isSupportedAttribute(const QualifiedName& attrName) attrName 118 Source/core/svg/SVGUseElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 196 Source/core/svg/SVGUseElement.cpp void SVGUseElement::svgAttributeChanged(const QualifiedName& attrName) attrName 198 Source/core/svg/SVGUseElement.cpp if (!isSupportedAttribute(attrName)) { attrName 199 Source/core/svg/SVGUseElement.cpp SVGGraphicsElement::svgAttributeChanged(attrName); attrName 206 Source/core/svg/SVGUseElement.cpp if (attrName == SVGNames::xAttr attrName 207 Source/core/svg/SVGUseElement.cpp || attrName == SVGNames::yAttr attrName 208 Source/core/svg/SVGUseElement.cpp || attrName == SVGNames::widthAttr attrName 209 Source/core/svg/SVGUseElement.cpp || attrName == SVGNames::heightAttr) { attrName 216 Source/core/svg/SVGUseElement.cpp if (SVGURIReference::isKnownAttribute(attrName)) { attrName 42 Source/core/svg/SVGViewElement.cpp bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) attrName 50 Source/core/svg/SVGViewElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 42 Source/core/svg/SVGZoomAndPan.cpp bool SVGZoomAndPan::isKnownAttribute(const QualifiedName& attrName) attrName 44 Source/core/svg/SVGZoomAndPan.cpp return attrName == SVGNames::zoomAndPanAttr; attrName 500 Source/core/svg/animation/SVGSMILElement.cpp bool SVGSMILElement::isSupportedAttribute(const QualifiedName& attrName) attrName 514 Source/core/svg/animation/SVGSMILElement.cpp return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); attrName 545 Source/core/svg/animation/SVGSMILElement.cpp void SVGSMILElement::svgAttributeChanged(const QualifiedName& attrName) attrName 547 Source/core/svg/animation/SVGSMILElement.cpp if (!isSupportedAttribute(attrName)) { attrName 548 Source/core/svg/animation/SVGSMILElement.cpp SVGElement::svgAttributeChanged(attrName); attrName 552 Source/core/svg/animation/SVGSMILElement.cpp if (attrName == SVGNames::durAttr) attrName 554 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName == SVGNames::repeatDurAttr) attrName 556 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName == SVGNames::repeatCountAttr) attrName 558 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName == SVGNames::minAttr) attrName 560 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName == SVGNames::maxAttr) attrName 562 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName == SVGNames::attributeNameAttr) attrName 564 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName.matches(XLinkNames::hrefAttr)) { attrName 570 Source/core/svg/animation/SVGSMILElement.cpp if (attrName == SVGNames::beginAttr) attrName 572 Source/core/svg/animation/SVGSMILElement.cpp else if (attrName == SVGNames::endAttr) attrName 81 Source/web/WebElement.cpp bool WebElement::hasAttribute(const WebString& attrName) const attrName 83 Source/web/WebElement.cpp return constUnwrap<Element>()->hasAttribute(attrName); attrName 86 Source/web/WebElement.cpp void WebElement::removeAttribute(const WebString& attrName) attrName 91 Source/web/WebElement.cpp unwrap<Element>()->removeAttribute(attrName); attrName 94 Source/web/WebElement.cpp WebString WebElement::getAttribute(const WebString& attrName) const attrName 96 Source/web/WebElement.cpp return constUnwrap<Element>()->getAttribute(attrName); attrName 99 Source/web/WebElement.cpp bool WebElement::setAttribute(const WebString& attrName, const WebString& attrValue) attrName 105 Source/web/WebElement.cpp unwrap<Element>()->setAttribute(attrName, attrValue, exceptionState); attrName 57 Source/web/WebMutationEvent.cpp return WebString(constUnwrap<MutationEvent>()->attrName()); attrName 318 Source/web/WebPageSerializerImpl.cpp const QualifiedName& attrName = attribute.name(); attrName 319 Source/web/WebPageSerializerImpl.cpp if (element->hasLegalLinkAttribute(attrName)) {