Fwd: Safari IDL for WheelEvent

Whoops, I meant to send this to the public list:

Begin forwarded message:

>
> FYI. This is what we have, I believe it emulates the IE interface  
> for this with reasonable fidelity.
>
> Note that it's not a MouseEvent (no button) but has many of the  
> same attributes.
>
>
>     interface WheelEvent : UIEvent {
>
>         readonly attribute boolean altKey;
>         readonly attribute long    clientX;
>         readonly attribute long    clientY;
>         readonly attribute boolean ctrlKey;
>         readonly attribute boolean metaKey;
>         readonly attribute boolean shiftKey;
>
>         readonly attribute long    wheelDelta;
>         readonly attribute long    offsetX;
>         readonly attribute long    offsetY;
>         readonly attribute long    screenX;
>         readonly attribute long    screenY;
>         readonly attribute long    x;
>         readonly attribute long    y;
>
>     };
>
>

Received on Monday, 27 March 2006 20:25:38 UTC