Home
last modified time | relevance | path

Searched refs:m_styleDecl (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
DAttribute.h74 CSSStyleDeclaration* style() const { return m_styleDecl.get(); } in style()
75 CSSMappedAttributeDeclaration* decl() const { return m_styleDecl.get(); } in decl()
76 void setDecl(PassRefPtr<CSSMappedAttributeDeclaration> decl) { m_styleDecl = decl; } in setDecl()
94 , m_styleDecl(styleDecl) in Attribute()
103 , m_styleDecl(styleDecl) in Attribute()
116 RefPtr<CSSMappedAttributeDeclaration> m_styleDecl; variable
DAttribute.cpp43 return adoptRef(new Attribute(m_name, m_value, m_isMappedAttribute, m_styleDecl.get())); in clone()