Searched refs:fillSize (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp164 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromFillSize(const FillSize& fillSize, const RenderStyle& style) argument
166 switch (fillSize.type) {
168 return createFromLengthSize(fillSize.size, style);
172 return AnimatableUnknown::create(CSSPrimitiveValue::create(fillSize.type));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1328 static PassRefPtrWillBeRawPtr<CSSValue> valueForFillSize(const FillSize& fillSize, const RenderStyle& style) argument
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));
H A DCSSPrimitiveValueMappings.h3352 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EFillSizeType fillSize) argument
3356 switch (fillSize) {

Completed in 107 milliseconds