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

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, 10 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
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 a s an",
102 " * onDrop event) and will return `null` before then.",
103 " *",
104 " * Data transfer is also prohibited across domains. If a drag origi nates",
105 " * from content from another domain or protocol (HTTP vs HTTPS) the n the",
106 " * data cannot be accessed.",
107 " *",
108 " * The [type] can have values such as:",
109 " *",
110 " * * `'Text'`",
111 " * * `'URL'`",
112 " */"
113 ]
114 }
115 },
95 "Document": { 116 "Document": {
96 "members": { 117 "members": {
97 "body": [ 118 "body": [
98 "/// Moved to [HtmlDocument]." 119 "/// Moved to [HtmlDocument]."
99 ], 120 ],
100 "caretRangeFromPoint": [ 121 "caretRangeFromPoint": [
101 "/// Use the [Range] constructor instead." 122 "/// Use the [Range] constructor instead."
102 ], 123 ],
103 "createElement": [ 124 "createElement": [
104 "/// Deprecated: use new Element.tag(tagName) instead." 125 "/// Deprecated: use new Element.tag(tagName) instead."
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 " *", 382 " *",
362 " * is the (more verbose) equivalent of", 383 " * is the (more verbose) equivalent of",
363 " *", 384 " *",
364 " * var request = new HttpRequest.get('http://dartlang.org', (ev ent) => print('Request complete'));", 385 " * var request = new HttpRequest.get('http://dartlang.org', (ev ent) => print('Request complete'));",
365 " */" 386 " */"
366 ] 387 ]
367 } 388 }
368 } 389 }
369 } 390 }
370 } 391 }
OLDNEW
« sdk/lib/html/dart2js/html_dart2js.dart ('K') | « 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