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 type.", |
| 100 " *", |
| 101 " * The data is only available from within a drop operation (such as
an", |
| 102 " * [Element.onDrop] event) and will return `null` before the event
is", |
| 103 " * triggered.", |
| 104 " *", |
| 105 " * Data transfer is prohibited across domains. If a drag originates
", |
| 106 " * from content from another domain or protocol (HTTP vs HTTPS) the
n the", |
| 107 " * data cannot be accessed.", |
| 108 " *", |
| 109 " * The [type] can have values such as:", |
| 110 " *", |
| 111 " * * `'Text'`", |
| 112 " * * `'URL'`", |
| 113 " */" |
| 114 ] |
| 115 } |
| 116 }, |
95 "Document": { | 117 "Document": { |
96 "members": { | 118 "members": { |
97 "body": [ | 119 "body": [ |
98 "/// Moved to [HtmlDocument]." | 120 "/// Moved to [HtmlDocument]." |
99 ], | 121 ], |
100 "caretRangeFromPoint": [ | 122 "caretRangeFromPoint": [ |
101 "/// Use the [Range] constructor instead." | 123 "/// Use the [Range] constructor instead." |
102 ], | 124 ], |
103 "createElement": [ | 125 "createElement": [ |
104 "/// Deprecated: use new Element.tag(tagName) instead." | 126 "/// Deprecated: use new Element.tag(tagName) instead." |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 " *", | 599 " *", |
578 " * [oldVersion] should match the database's current [version] exact
ly.", | 600 " * [oldVersion] should match the database's current [version] exact
ly.", |
579 " *", | 601 " *", |
580 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", | 602 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", |
581 " */" | 603 " */" |
582 ] | 604 ] |
583 } | 605 } |
584 } | 606 } |
585 } | 607 } |
586 } | 608 } |
OLD | NEW |