getProperty(FoProperty.FONT_SIZE_ADJUST);
if (property != null) {
return property.getValue(context, fobj);
}
// Check the shorthand.
final PdFont fontProperty = (PdFont) getProperty(FoProperty.FONT);
if (fontProperty != null) {
/* If the shorthand exists, the effect of it is to set
* font-size-adjust to its initial value. */
return PdFontSizeAdjust.getInitialValue();
}