*/
public int jsxGet_offsetHeight() {
final MouseEvent event = MouseEvent.getCurrentMouseEvent();
if (isAncestorOfEventTarget(event)) {
// compute appropriate offset height to pretend mouse event was produced within this element
return event.jsxGet_clientY() - getPosY() + 50;
}
return jsxGet_currentStyle().getCalculatedHeight(true, true);
}
/**