Home | History | Annotate | Download | only in css

Lines Matching refs:FillSize

1328 static PassRefPtrWillBeRawPtr<CSSValue> valueForFillSize(const FillSize& fillSize, const RenderStyle& style)
1330 if (fillSize.type == Contain)
1333 if (fillSize.type == Cover)
1336 if (fillSize.size.height().isAuto())
1337 return zoomAdjustedPixelValueForLength(fillSize.size.width(), style);
1340 list->append(zoomAdjustedPixelValueForLength(fillSize.size.width(), style));
1341 list->append(zoomAdjustedPixelValueForLength(fillSize.size.height(), style));