new ShorthandManager.PropertyHandler() {
public void property(String pname, LexicalUnit lu,
boolean important) {
int idx = getPropertyIndex(pname);
if (idx != -1) {
ValueManager vm = valueManagers[idx];
Value v = vm.createValue(lu, CSSEngine.this);
dst.setMainProperty(pname, v, important);
return;
}
idx = getShorthandIndex(pname);
if (idx == -1)