- From: James Craig <jcraig@apple.com>
- Date: Sun, 18 Aug 2013 04:34:18 -0700
- To: Indie UI <public-indie-ui@w3.org>
The unsigned short constants (defined in UIScrollRequestEvent, UIValueChangeRequestEvent, and UIFocusRequestEvent) are now defined as WebIDL enum strings. 
In other words, what was previously:
> const unsigned short DELTAS = 0;
> const unsigned short UP = 1;
> const unsigned short RIGHT = 2;
> const unsigned short DOWN = 3;
> const unsigned short LEFT = 4;
> …
Is now defined as:
> enum ScrollRequestScrollType {
>     "DELTAS",
>     "UP",
>     "RIGHT",
>     "DOWN",
>     "LEFT",
>     …
> }
This completes ACTION-56 and ACTION-64.
Received on Sunday, 18 August 2013 11:34:47 UTC