Home | History | Annotate | Download | only in style

Lines Matching defs:Shape

45         Shape,
50 static PassRefPtr<ShapeValue> createShapeValue(PassRefPtr<BasicShape> shape, CSSBoxType cssBox)
52 return adoptRef(new ShapeValue(shape, cssBox));
66 BasicShape* shape() const { return m_shape.get(); }
88 ShapeValue(PassRefPtr<BasicShape> shape, CSSBoxType cssBox)
89 : m_type(Shape)
90 , m_shape(shape)
124 case Shape:
125 return shape() == other.shape() && cssBox() == other.cssBox();