Home | History | Annotate | Download | only in editing

Lines Matching refs:tagName

96     static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, int primitiveValue, const QualifiedName& tagName)
98 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
110 HTMLElementEquivalent(CSSPropertyID, const QualifiedName& tagName);
111 HTMLElementEquivalent(CSSPropertyID, int primitiveValue, const QualifiedName& tagName);
123 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, const QualifiedName& tagName)
125 , m_tagName(&tagName)
129 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, int primitiveValue, const QualifiedName& tagName)
132 , m_tagName(&tagName)
150 static PassOwnPtr<HTMLElementEquivalent> create(int primitiveValue, const QualifiedName& tagName)
152 return adoptPtr(new HTMLTextDecorationEquivalent(primitiveValue, tagName));
157 HTMLTextDecorationEquivalent(int primitiveValue, const QualifiedName& tagName);
160 HTMLTextDecorationEquivalent::HTMLTextDecorationEquivalent(int primitiveValue, const QualifiedName& tagName)
161 : HTMLElementEquivalent(CSSPropertyTextDecoration, primitiveValue, tagName)
173 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName)
175 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
190 HTMLAttributeEquivalent(CSSPropertyID, const QualifiedName& tagName, const QualifiedName& attrName);
195 HTMLAttributeEquivalent::HTMLAttributeEquivalent(CSSPropertyID id, const QualifiedName& tagName, const QualifiedName& attrName)
196 : HTMLElementEquivalent(id, tagName)