[RequestAnimationFrame] callback

Hi all,

the spec currently has

| callback FrameRequestCallback = void (DOMTimeStamp time);

This is inconsistent with the rest of the platform, which allows using, 
for example, { handleEvent: function(e) { } } for EventListener. It 
should be changed to

# callback interface FrameRequestCallback {
#   void sample(DOMTimeStamp time);
# };

Gecko already implements this.

Thanks
Ms2ger

Received on Wednesday, 22 February 2012 12:01:30 UTC