Home | History | Annotate | Download | only in dom

Lines Matching refs:Attribute

41 class Attribute : public RefCounted<Attribute> {
45 static PassRefPtr<Attribute> create(const QualifiedName& name, const AtomicString& value)
47 return adoptRef(new Attribute(name, value, false, 0));
49 static PassRefPtr<Attribute> createMapped(const QualifiedName& name, const AtomicString& value)
51 return adoptRef(new Attribute(name, value, true, 0));
53 static PassRefPtr<Attribute> createMapped(const AtomicString& name, const AtomicString& value)
55 return adoptRef(new Attribute(name, value, true, 0));
71 PassRefPtr<Attribute> clone() const;
82 // name of an attribute once parseMappedAttribute has been called as DOM
83 // elements may have placed the Attribute in a hash by name.
89 Attribute(const QualifiedName& name, const AtomicString& value, bool isMappedAttribute, CSSMappedAttributeDeclaration* styleDecl)
98 Attribute(const AtomicString& name, const AtomicString& value, bool isMappedAttribute, CSSMappedAttributeDeclaration* styleDecl)