final MutableStyleProperties inputProperties =
parser.parseDeclarations(inputCSS);
final MutablePropertyValues inputValues = stylingFactory.createPropertyValues(
StylePropertyDetails.getDefinitions());
inputProperties.iteratePropertyValues(new PropertyValueIteratee() {
public IterationAction next(PropertyValue propertyValue) {
inputValues.setComputedValue(propertyValue.getProperty(),
propertyValue.getValue());
return IterationAction.CONTINUE;
}