| OLD | NEW |
| 1 { | 1 { |
| 2 "dart.dom.html": { | 2 "dart.dom.html": { |
| 3 "CanvasGradient": { | 3 "CanvasGradient": { |
| 4 "comment": [ | 4 "comment": [ |
| 5 "/**", | 5 "/**", |
| 6 " * An opaque canvas object representing a gradient.", | 6 " * An opaque canvas object representing a gradient.", |
| 7 " *", | 7 " *", |
| 8 " * Created by calling [createLinearGradient] or [createRadialGradient]
on a", | 8 " * Created by calling [createLinearGradient] or [createRadialGradient]
on a", |
| 9 " * [CanvasRenderingContext2D] object.", | 9 " * [CanvasRenderingContext2D] object.", |
| 10 " *", | 10 " *", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 " * The base class for all documents.", | 120 " * The base class for all documents.", |
| 121 " *", | 121 " *", |
| 122 " * Each web page loaded in the browser has its own [Document] object, w
hich is", | 122 " * Each web page loaded in the browser has its own [Document] object, w
hich is", |
| 123 " * typically an [HtmlDocument].", | 123 " * typically an [HtmlDocument].", |
| 124 " *", | 124 " *", |
| 125 " * If you aren't comfortable with DOM concepts, see the Dart tutorial", | 125 " * If you aren't comfortable with DOM concepts, see the Dart tutorial", |
| 126 " * [Target 2: Connect Dart & HTML](http://www.dartlang.org/docs/tutoria
ls/connect-dart-html/).", | 126 " * [Target 2: Connect Dart & HTML](http://www.dartlang.org/docs/tutoria
ls/connect-dart-html/).", |
| 127 " */" | 127 " */" |
| 128 ], | 128 ], |
| 129 "members": { | 129 "members": { |
| 130 "createElement": [ | |
| 131 "/// Deprecated: use new Element.tag(tagName) instead." | |
| 132 ], | |
| 133 "querySelector": [ | 130 "querySelector": [ |
| 134 "/**", | 131 "/**", |
| 135 " * Finds the first descendant element of this document that matches t
he", | 132 " * Finds the first descendant element of this document that matches t
he", |
| 136 " * specified group of selectors.", | 133 " * specified group of selectors.", |
| 137 " *", | 134 " *", |
| 138 " * Unless your webpage contains multiple documents, the top-level que
ry", | 135 " * Unless your webpage contains multiple documents, the top-level que
ry", |
| 139 " * method behaves the same as this method, so you should use it inste
ad to", | 136 " * method behaves the same as this method, so you should use it inste
ad to", |
| 140 " * save typing a few characters.", | 137 " * save typing a few characters.", |
| 141 " *", | 138 " *", |
| 142 " * [selectors] should be a string using CSS selector syntax.", | 139 " * [selectors] should be a string using CSS selector syntax.", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 " *", | 542 " *", |
| 546 " * [oldVersion] should match the database's current [version] exact
ly.", | 543 " * [oldVersion] should match the database's current [version] exact
ly.", |
| 547 " *", | 544 " *", |
| 548 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", | 545 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", |
| 549 " */" | 546 " */" |
| 550 ] | 547 ] |
| 551 } | 548 } |
| 552 } | 549 } |
| 553 } | 550 } |
| 554 } | 551 } |
| OLD | NEW |