CharacterSizeBuilder builder = new CharacterSizeBuilder();
StyleValue fontSize = propertyValues.getComputedValue(
StylePropertyDetails.FONT_SIZE);
if (fontSize != null) {
fontSize.visit(FONT_SIZE_COLLECTOR, builder);
}
StyleValue fontStretch = propertyValues.getComputedValue(
StylePropertyDetails.FONT_STRETCH);
if (fontStretch != null) {
fontStretch.visit(FONT_STRETCH_COLLECTOR, builder);