| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 " * This context is extended by [CanvasRenderingContext2D] and", | 85 " * This context is extended by [CanvasRenderingContext2D] and", |
| 86 " * [WebGLRenderingContext].", | 86 " * [WebGLRenderingContext].", |
| 87 " */" | 87 " */" |
| 88 ], | 88 ], |
| 89 "members": { | 89 "members": { |
| 90 "canvas": [ | 90 "canvas": [ |
| 91 "/// Reference to the canvas element to which this context belongs." | 91 "/// Reference to the canvas element to which this context belongs." |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 }, | 94 }, |
| 95 "Clipboard": { |
| 96 "members": { |
| 97 "getData": [ |
| 98 "/**", |
| 99 " * Gets the data for the specified MIME type.", |
| 100 " *", |
| 101 " * The data is only available from within a drop operation (such a
s an", |
| 102 " * onDrop event) and will return `null` before then.", |
| 103 " */" |
| 104 ] |
| 105 } |
| 106 }, |
| 95 "Document": { | 107 "Document": { |
| 96 "members": { | 108 "members": { |
| 97 "body": [ | 109 "body": [ |
| 98 "/// Moved to [HtmlDocument]." | 110 "/// Moved to [HtmlDocument]." |
| 99 ], | 111 ], |
| 100 "caretRangeFromPoint": [ | 112 "caretRangeFromPoint": [ |
| 101 "/// Use the [Range] constructor instead." | 113 "/// Use the [Range] constructor instead." |
| 102 ], | 114 ], |
| 103 "createElement": [ | 115 "createElement": [ |
| 104 "/// Deprecated: use new Element.tag(tagName) instead." | 116 "/// Deprecated: use new Element.tag(tagName) instead." |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 " *", | 373 " *", |
| 362 " * is the (more verbose) equivalent of", | 374 " * is the (more verbose) equivalent of", |
| 363 " *", | 375 " *", |
| 364 " * var request = new HttpRequest.get('http://dartlang.org', (ev
ent) => print('Request complete'));", | 376 " * var request = new HttpRequest.get('http://dartlang.org', (ev
ent) => print('Request complete'));", |
| 365 " */" | 377 " */" |
| 366 ] | 378 ] |
| 367 } | 379 } |
| 368 } | 380 } |
| 369 } | 381 } |
| 370 } | 382 } |
| OLD | NEW |