| 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":
|
| {
|
|
|