Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: tools/dom/docs/docs.json

Issue 12092114: Documenting misleading DataTransfer API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698