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

Unified Diff: sdk/lib/html/docs/html_docs.json

Issue 11421102: Added DivElement documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/docs/html_docs.json
diff --git a/sdk/lib/html/docs/html_docs.json b/sdk/lib/html/docs/html_docs.json
index d30d516eed4585eb3e176f65346ec32c38b404ca..6ab4273f68213f7fb2e8c1a83058f6c3427fc715 100644
--- a/sdk/lib/html/docs/html_docs.json
+++ b/sdk/lib/html/docs/html_docs.json
@@ -1257,7 +1257,30 @@
},
"DivElement.dart":
{
-
+ "class DivElement extends Element implements Element native \"*HTMLDivElement\" {":
+ [
+ "/**",
+ " * Represents an HTML <div> element.",
+ " *",
+ " * The [DivElement] is a generic container for content and does not have any",
+ " * special significance. It is functionally similar to [SpanElement].",
+ " *",
+ " * The [DivElement] is a block-level element, as opposed to [SpanElement],",
+ " * which is an inline-level element.",
+ " *",
+ " * Example usage:",
+ " *",
+ " * DivElement div = new DivElement();",
+ " * div.text = 'Here's my new DivElem",
+ " * document.body.elements.add(elem);",
+ " *",
+ " * See also:",
+ " *",
+ " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) from W3C.",
+ " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block-boxes) from W3C.",
+ " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inline-boxes) from W3C.",
+ " */"
+ ]
},
"AnalyserNode.dart":
{
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698