| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "/// Moved to [HtmlDocument]." | 152 "/// Moved to [HtmlDocument]." |
| 153 ], | 153 ], |
| 154 "webkitIsFullScreen": [ | 154 "webkitIsFullScreen": [ |
| 155 "/// Moved to [HtmlDocument]." | 155 "/// Moved to [HtmlDocument]." |
| 156 ], | 156 ], |
| 157 "webkitPointerLockElement": [ | 157 "webkitPointerLockElement": [ |
| 158 "/// Moved to [HtmlDocument]." | 158 "/// Moved to [HtmlDocument]." |
| 159 ] | 159 ] |
| 160 } | 160 } |
| 161 }, | 161 }, |
| 162 "HTMLAreaElement": { |
| 163 "comment": [ |
| 164 "/**", |
| 165 " * DOM Area Element, which links regions of an image map with a hyperli
nk.", |
| 166 " *", |
| 167 " * The element can also define an uninteractive region of the map.", |
| 168 " *", |
| 169 " * See also:", |
| 170 " *", |
| 171 " * * [<area>](https://developer.mozilla.org/en-US/docs/HTML/Element/are
a)", |
| 172 " * on MDN.", |
| 173 " */" |
| 174 ] |
| 175 }, |
| 162 "HTMLCanvasElement": { | 176 "HTMLCanvasElement": { |
| 163 "members": { | 177 "members": { |
| 164 "height": [ | 178 "height": [ |
| 165 "/// The height of this canvas element in CSS pixels." | 179 "/// The height of this canvas element in CSS pixels." |
| 166 ], | 180 ], |
| 167 "toDataURL": [ | 181 "toDataURL": [ |
| 168 "/**", | 182 "/**", |
| 169 " * Returns a data URI containing a representation of the image in t
he", | 183 " * Returns a data URI containing a representation of the image in t
he", |
| 170 " * format specified by type (defaults to 'image/png').", | 184 " * format specified by type (defaults to 'image/png').", |
| 171 " *", | 185 " *", |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 " * is the (more verbose) equivalent of", | 419 " * is the (more verbose) equivalent of", |
| 406 " *", | 420 " *", |
| 407 " * var request = new HttpRequest.get('http://dartlang.org',", | 421 " * var request = new HttpRequest.get('http://dartlang.org',", |
| 408 " * (event) => print('Request complete'));", | 422 " * (event) => print('Request complete'));", |
| 409 " */" | 423 " */" |
| 410 ] | 424 ] |
| 411 } | 425 } |
| 412 } | 426 } |
| 413 } | 427 } |
| 414 } | 428 } |
| OLD | NEW |