Home | History | Annotate | Download | only in style

Lines Matching refs:StyleRareNonInheritedData

58 // StyleRareNonInheritedData::m_pageSize is meaningful only when 
59 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED.
70 class StyleRareNonInheritedData : public RefCounted<StyleRareNonInheritedData> {
72 static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new StyleRareNonInheritedData); }
73 PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new StyleRareNonInheritedData(*this)); }
74 ~StyleRareNonInheritedData();
76 bool operator==(const StyleRareNonInheritedData&) const;
77 bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this == o); }
79 bool contentDataEquivalent(const StyleRareNonInheritedData& o) const;
80 bool shadowDataEquivalent(const StyleRareNonInheritedData& o) const;
81 bool reflectionDataEquivalent(const StyleRareNonInheritedData& o) const;
82 bool animationDataEquivalent(const StyleRareNonInheritedData&) const;
83 bool transitionDataEquivalent(const StyleRareNonInheritedData&) const;
134 StyleRareNonInheritedData();
135 StyleRareNonInheritedData(const StyleRareNonInheritedData&);