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

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 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
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 }
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