Home | History | Annotate | Download | only in css

Lines Matching refs:nextValue

3719         CSSParserValue* nextValue = m_valueList->next();
3720 bool nextValBreaksFont = !nextValue ||
3721 (nextValue->unit == CSSParserValue::Operator && nextValue->iValue == ',');
3722 bool nextValIsFontName = nextValue &&
3723 ((nextValue->id >= CSSValueSerif && nextValue->id <= CSSValueWebkitBody) ||
3724 (nextValue->unit == CSSPrimitiveValue::CSS_STRING || nextValue->unit == CSSPrimitiveValue::CSS_IDENT));
3754 if (!nextValue)
3762 value = nextValue;