Index: sdk/lib/html/dart2js/html_dart2js.dart |
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart |
index c2a71af46e3d6a8c4bdac063d022a980f8fbebc4..0bc3749f7cb05762bcdb3323f4ea3276ade6ed2d 100644 |
--- a/sdk/lib/html/dart2js/html_dart2js.dart |
+++ b/sdk/lib/html/dart2js/html_dart2js.dart |
@@ -34606,7 +34606,6 @@ class Window extends EventTarget implements WindowEventHandlers, WindowBase, Glo |
JS('void', '#.location = #', this, value); |
} |
- |
/** |
* Called to draw an animation frame and then request the window to repaint |
* after [callback] has finished (creating the animation). |
@@ -34637,7 +34636,6 @@ class Window extends EventTarget implements WindowEventHandlers, WindowBase, Glo |
* * [Window.cancelAnimationFrame](https://developer.mozilla.org/en-US/docs/Web/API/Window.cancelAnimationFrame) |
* from MDN. |
*/ |
- @DomName('Window.cancelAnimationFrame') |
void cancelAnimationFrame(int id) { |
_ensureRequestAnimationFrame(); |
_cancelAnimationFrame(id); |
@@ -34694,6 +34692,7 @@ class Window extends EventTarget implements WindowEventHandlers, WindowBase, Glo |
@DomName('Window.console') |
Console get console => Console._safeConsole; |
+ |
/** |
* Access a sandboxed file system of the specified `size`. If `persistent` is |
* true, the application will request permission from the user to create |