PassOwnPtr<InterpolationValue> CSSShadowListInterpolationType::maybeConvertInherit(const StyleResolverState& state, ConversionCheckers& conversionCheckers) const { if (!state.parentStyle()) return nullptr; const ShadowList* parentShadowList = ShadowListPropertyFunctions::getShadowList(cssProperty(), *state.parentStyle()); conversionCheckers.append(ParentShadowListChecker::create(*this, cssProperty(), const_cast<ShadowList*>(parentShadowList))); // Take ref. return convertShadowList(parentShadowList, state.parentStyle()->effectiveZoom()); }
PassOwnPtr<InterpolationValue> CSSShadowListInterpolationType::maybeConvertUnderlyingValue(const InterpolationEnvironment& environment) const { if (!environment.state().style()) return nullptr; return convertShadowList(ShadowListPropertyFunctions::getShadowList(cssProperty(), *environment.state().style()), environment.state().style()->effectiveZoom()); }
PassOwnPtr<InterpolationValue> CSSShadowListInterpolationType::maybeConvertInitial() const { return convertShadowList(ShadowListPropertyFunctions::getInitialShadowList(cssProperty()), 1); }
InterpolationValue CSSShadowListInterpolationType::maybeConvertInitial(const StyleResolverState&, ConversionCheckers&) const { return convertShadowList(ShadowListPropertyFunctions::getInitialShadowList(cssProperty()), 1); }