return;
}
BackgroundSpecification backgroundSpecification =
currentNode.getLayoutContext().getBackgroundSpecification();
for (int i = 0; i < length; i++)
{
CSSValue item = list.getItem(i);
if (item instanceof CSSValuePair == false)
{
backgroundSpecification.setBackgroundRepeat
(i, EMPTY_BACKGROUND_REPEAT);
}
else
{
CSSValuePair bvalue = (CSSValuePair) item;
backgroundSpecification.setBackgroundRepeat(i, bvalue);
}
}