Home | History | Annotate | Download | only in css

Lines Matching refs:shapeValue

65 #include "core/rendering/style/ShapeValue.h"
1431 static PassRefPtrWillBeRawPtr<CSSValue> valueForShape(const RenderStyle& style, ShapeValue* shapeValue)
1433 if (!shapeValue)
1435 if (shapeValue->type() == ShapeValue::Box)
1436 return cssValuePool().createValue(shapeValue->cssBox());
1437 if (shapeValue->type() == ShapeValue::Image) {
1438 if (shapeValue->image())
1439 return shapeValue->image()->cssValue();
1443 ASSERT(shapeValue->type() == ShapeValue::Shape);
1446 list->append(valueForBasicShape(style, shapeValue->shape()));
1447 if (shapeValue->cssBox() != BoxMissing)
1448 list->append(cssValuePool().createValue(shapeValue->cssBox()));