Home | History | Annotate | Download | only in style

Lines Matching refs:SVGRenderStyle

41 class SVGRenderStyle : public RefCounted<SVGRenderStyle> {    
43 static PassRefPtr<SVGRenderStyle> create() { return adoptRef(new SVGRenderStyle); }
44 PassRefPtr<SVGRenderStyle> copy() const { return adoptRef(new SVGRenderStyle(*this));}
45 ~SVGRenderStyle();
47 bool inheritedNotEqual(const SVGRenderStyle*) const;
48 void inheritFrom(const SVGRenderStyle*);
50 StyleDifference diff(const SVGRenderStyle*) const;
52 bool operator==(const SVGRenderStyle&) const;
53 bool operator!=(const SVGRenderStyle& o) const { return !(*this == o); }
400 SVGRenderStyle();
401 SVGRenderStyle(const SVGRenderStyle&);
402 SVGRenderStyle(CreateDefaultType); // Used to create the default style.