return attrFunction.evaluate
(getLayoutProcess(), element, (CSSFunctionValue) value);
}
else if (value instanceof CSSValueList)
{
final CSSValueList list = (CSSValueList) value;
final ArrayList retValus = new ArrayList();
final int length = list.getLength();
for (int i = 0; i < length; i++)
{
final CSSValue item = list.getItem(i);
retValus.add(resolveValue(item, element));
}
return new CSSValueList(retValus);
}
else if (value instanceof CSSValuePair)
{
final CSSValuePair pair = (CSSValuePair) value;
return new CSSValuePair