Remove webkit prefix for RequestAnimationFrame #4585
Labels
type-enhancement
A request for a change that isn't a bug
web-libraries
Issues impacting dart:html, etc., libraries
Milestone
Per issue #4550:
RAF is sufficiently standardized to have an unprefixed API.
Remove these three members from the public API:
void webkitCancelAnimationFrame(int id) native;
void webkitCancelRequestAnimationFrame(int id) native;
int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback) native;
The names still need to be declared in impl type for dartium and dart2js
The text was updated successfully, but these errors were encountered: