Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 64553010: Finished off HTML Window blurb + link for every member. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/docs/docs.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/docs/docs.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698