Home | History | Annotate | Download | only in style

Lines Matching defs:StyleRareNonInheritedData

63 // StyleRareNonInheritedData::m_pageSize is meaningful only when
64 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED.
75 class StyleRareNonInheritedData : public RefCounted<StyleRareNonInheritedData> {
77 static PassRefPtr<StyleRareNonInheritedData> create() { return adoptRef(new StyleRareNonInheritedData); }
78 PassRefPtr<StyleRareNonInheritedData> copy() const { return adoptRef(new StyleRareNonInheritedData(*this)); }
79 ~StyleRareNonInheritedData();
81 bool operator==(const StyleRareNonInheritedData&) const;
82 bool operator!=(const StyleRareNonInheritedData& o) const { return !(*this == o); }
84 bool contentDataEquivalent(const StyleRareNonInheritedData&) const;
85 bool counterDataEquivalent(const StyleRareNonInheritedData&) const;
86 bool shadowDataEquivalent(const StyleRareNonInheritedData&) const;
87 bool reflectionDataEquivalent(const StyleRareNonInheritedData&) const;
88 bool animationDataEquivalent(const StyleRareNonInheritedData&) const;
89 bool transitionDataEquivalent(const StyleRareNonInheritedData&) const;
214 StyleRareNonInheritedData();
215 StyleRareNonInheritedData(const StyleRareNonInheritedData&);