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

Unified Diff: tools/dom/templates/html/impl/impl_Window.darttemplate

Issue 66193010: Way more documentation blanks filled in. (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:
View side-by-side diff with in-line comments
Download patch
« sdk/lib/html/dart2js/html_dart2js.dart ('K') | « tools/dom/dom.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/templates/html/impl/impl_Window.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Window.darttemplate b/tools/dom/templates/html/impl/impl_Window.darttemplate
index 8fadb1a3969574788f0fe4d16f5824570d318c58..908f4c41300230d37f30d2afaaca18281ff7bddc 100644
--- a/tools/dom/templates/html/impl/impl_Window.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Window.darttemplate
@@ -35,6 +35,15 @@ $endif
}
$if DART2JS
+ /**
+ * The newest document in this window.
+ *
+ * ## Other resources
+ *
+ * * [Loading web pages]
+ * (http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html)
+ * from WHATWG.
+ */
Document get document => JS('Document', '#.document', this);
WindowBase _open2(url, name) => JS('Window', '#.open(#,#)', this, url, name);
@@ -173,6 +182,7 @@ $if DART2JS
'#.indexedDB || #.webkitIndexedDB || #.mozIndexedDB',
this, this, this);
+ /// The debugging console for this window.
@DomName('Window.console')
Console get console => Console._safeConsole;
« sdk/lib/html/dart2js/html_dart2js.dart ('K') | « tools/dom/dom.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698