Trying to determine if bug in UI position

Trying to determine if bug in UI position

I found a bug in my application and I am trying to figure out if it is considered a bug in jQuery UI position or if I should stick with my workaround.

The bug occurs when the parent element has overflow:hidden and the element you are positioning on overflows the parent. The position code sees the entire height of the element as if it is visible when in reality it is only a partial bit of that size.

I know my explanation is bad, so I have made some sample code showing the problem: http://jsbin.com/esopo4/2

Eric