217218219220221222223224225226227
} protected static Integer getLengthValue(CalculatedStyle style, CSSName cssName) { FSDerivedValue widthValue = style.valueByName(cssName); if (widthValue instanceof LengthValue) { return new Integer((int)widthValue.asFloat()); } return null; } }