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

Unified Diff: tools/dom/docs/docs.json

Issue 23591046: Making Document, Element and Window documentable via @DocsEditable (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 months 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
Index: tools/dom/docs/docs.json
diff --git a/tools/dom/docs/docs.json b/tools/dom/docs/docs.json
index 3b71d3c5f6e4c900eb43915fece1c755c6fef2bd..3b969ac9ed802623389f46400ee648ccf4488f7e 100644
--- a/tools/dom/docs/docs.json
+++ b/tools/dom/docs/docs.json
@@ -115,6 +115,17 @@
}
},
"Document": {
+ "comment": [
+ "/**",
+ " * The base class for all documents.",
+ " *",
+ " * Each web page loaded in the browser has its own [Document] object, which is",
+ " * typically an [HtmlDocument].",
+ " *",
+ " * If you aren't comfortable with DOM concepts, see the Dart tutorial",
+ " * [Target 2: Connect Dart & HTML](http://www.dartlang.org/docs/tutorials/connect-dart-html/).",
+ " */"
+ ],
"members": {
"createElement": [
"/// Deprecated: use new Element.tag(tagName) instead."
@@ -139,6 +150,11 @@
}
},
"Element": {
+ "comment": [
+ "/**",
+ " * An abstract class, which all HTML elements extend.",
+ " */"
+ ],
"members": {
"querySelector": [
"/**",

Powered by Google App Engine
This is Rietveld 408576698