HomeSort by relevance Sort by last modified time
    Searched defs:CSSMutableStyleDeclaration (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/css/
CSSMutableStyleDeclaration.h 38 CSSMutableStyleDeclarationConstIterator(const CSSMutableStyleDeclaration* decl, CSSProperty* current);
54 const CSSMutableStyleDeclaration* m_decl;
58 class CSSMutableStyleDeclaration : public CSSStyleDeclaration {
60 static PassRefPtr<CSSMutableStyleDeclaration> create()
62 return adoptRef(new CSSMutableStyleDeclaration);
64 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule)
66 return adoptRef(new CSSMutableStyleDeclaration(parentRule));
68 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperties)
70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties));
72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties
    [all...]
CSSMutableStyleDeclaration.cpp 23 #include "CSSMutableStyleDeclaration.h"
43 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration()
52 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent)
62 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties)
75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperties)
99 CSSMutableStyleDeclaration& CSSMutableStyleDeclaration::operator=(const CSSMutableStyleDeclaration& other
    [all...]

Completed in 2042 milliseconds