Home | History | Annotate | Download | only in css

Lines Matching refs:CSSGradientValue

54 // (CSSGradientValue) traceAfterDispatch method.
75 // We have to declare the VectorTraits specialization before CSSGradientValue
81 class CSSGradientValue : public CSSImageGeneratorValue {
107 PassRefPtrWillBeRawPtr<CSSGradientValue> gradientWithStylesResolved(const TextLinkColors&, Color currentColor);
112 CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType)
120 CSSGradientValue(const CSSGradientValue& other, ClassType classType, CSSGradientType gradientType)
154 DEFINE_CSS_VALUE_TYPE_CASTS(CSSGradientValue, isGradientValue());
156 class CSSLinearGradientValue : public CSSGradientValue {
182 : CSSGradientValue(LinearGradientClass, repeat, gradientType)
187 : CSSGradientValue(other, LinearGradientClass, other.gradientType())
197 class CSSRadialGradientValue : public CSSGradientValue {
229 : CSSGradientValue(RadialGradientClass, repeat, gradientType)
234 : CSSGradientValue(other, RadialGradientClass, other.gradientType())