| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 60feaaac7d80bc8deeaf24ca72522310d36cc1a4..8634f672e5ae6c6e62c62f123437fb55b1877a8a 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -29460,30 +29460,92 @@ class Window extends EventTarget implements WindowBase, _WindowTimers, WindowBas
|
| @DocsEditable()
|
| int _requestAnimationFrame(RequestAnimationFrameCallback callback) native "Window_requestAnimationFrame_Callback";
|
|
|
| + /**
|
| + * Resizes this window by an offset.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Window resizeBy] (http://docs.webplatform.org/wiki/dom/methods/resizeBy)
|
| + * from WebPlatform.org.
|
| + */
|
| @DomName('Window.resizeBy')
|
| @DocsEditable()
|
| void resizeBy(num x, num y) native "Window_resizeBy_Callback";
|
|
|
| + /**
|
| + * Resizes this window to a specific width and height.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Window resizeTo] (http://docs.webplatform.org/wiki/dom/methods/resizeTo)
|
| + * from WebPlatform.org.
|
| + */
|
| @DomName('Window.resizeTo')
|
| @DocsEditable()
|
| void resizeTo(num width, num height) native "Window_resizeTo_Callback";
|
|
|
| + /**
|
| + * Scrolls the page horizontally and vertically to a specific point.
|
| + *
|
| + * This method is identical to [scrollTo].
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Window scroll] (http://docs.webplatform.org/wiki/dom/methods/scroll)
|
| + * from WebPlatform.org.
|
| + */
|
| @DomName('Window.scroll')
|
| @DocsEditable()
|
| void scroll(int x, int y) native "Window_scroll_Callback";
|
|
|
| + /**
|
| + * Scrolls the page horizontally and vertically by an offset.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Window scrollBy] (http://docs.webplatform.org/wiki/dom/methods/scrollBy)
|
| + * from WebPlatform.org.
|
| + */
|
| @DomName('Window.scrollBy')
|
| @DocsEditable()
|
| void scrollBy(int x, int y) native "Window_scrollBy_Callback";
|
|
|
| + /**
|
| + * Scrolls the page horizontally and vertically to a specific point.
|
| + *
|
| + * This method is identical to [scroll].
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Window scrollTo] (http://docs.webplatform.org/wiki/dom/methods/scrollTo)
|
| + * from WebPlatform.org.
|
| + */
|
| @DomName('Window.scrollTo')
|
| @DocsEditable()
|
| void scrollTo(int x, int y) native "Window_scrollTo_Callback";
|
|
|
| + /**
|
| + * Opens a new page as a modal dialog.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Dialogs implemented using separate documents]
|
| + * (http://www.w3.org/html/wg/drafts/html/master/webappapis.html#dialogs-implemented-using-separate-documents)
|
| + * from W3C.
|
| + */
|
| @DomName('Window.showModalDialog')
|
| @DocsEditable()
|
| Object showModalDialog(String url, [Object dialogArgs, String featureArgs]) native "Window_showModalDialog_Callback";
|
|
|
| + /**
|
| + * Stops the window from loading.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [The Window object]
|
| + * (http://www.w3.org/html/wg/drafts/html/master/browsers.html#the-window-object)
|
| + * from W3C.
|
| + */
|
| @DomName('Window.stop')
|
| @DocsEditable()
|
| void stop() native "Window_stop_Callback";
|
| @@ -29523,6 +29585,15 @@ class Window extends EventTarget implements WindowBase, _WindowTimers, WindowBas
|
| return completer.future;
|
| }
|
|
|
| + /**
|
| + * Asynchronously retrieves a local filesystem entry.
|
| + *
|
| + * ## Other resources
|
| + *
|
| + * * [Obtaining access to file system entry points]
|
| + * (http://www.w3.org/TR/file-system-api/#obtaining-access-to-file-system-entry-points)
|
| + * from W3C.
|
| + */
|
| @DomName('Window.webkitResolveLocalFileSystemURL')
|
| @DocsEditable()
|
| @SupportedBrowser(SupportedBrowser.CHROME)
|
|
|