[Events] unsigned short constants now defined as WebIDL enum strings

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