if (JsoProperties.ID.equals(name)) {
JsoUtils.onSetId(element, value.toString(), getPropertyString(element, JsoProperties.ID));
}
PropertyContainer properties = JsoUtils.getDomProperties(element);
if ("style".equals(value)) {
GwtStyleUtils.overrideStyle(element.getStyle(), value.toString());
// add an empty style to preserve the insert order of DOM attribute in
// the
// wrapped LinkedHashMap
properties.put(name, "");
} else {
properties.put(name, value);
}
}