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

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

Issue 27263003: Update docs so that responseText returns empty String on failure. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 "/**", 410 "/**",
411 " * The data received as a reponse from the request.", 411 " * The data received as a reponse from the request.",
412 " *", 412 " *",
413 " * The data could be in the", 413 " * The data could be in the",
414 " * form of a [String], [ByteBuffer], [Document], [Blob], or json (a lso a", 414 " * form of a [String], [ByteBuffer], [Document], [Blob], or json (a lso a",
415 " * [String]). `null` indicates request failure.", 415 " * [String]). `null` indicates request failure.",
416 " */" 416 " */"
417 ], 417 ],
418 "responseText": [ 418 "responseText": [
419 "/**", 419 "/**",
420 " * The response in string form or `null on failure.", 420 " * The response in String form or empty String on failure.",
421 " */" 421 " */"
422 ], 422 ],
423 "responseType": [ 423 "responseType": [
424 "/**", 424 "/**",
425 " * [String] telling the server the desired response format.", 425 " * [String] telling the server the desired response format.",
426 " *", 426 " *",
427 " * Default is `String`.", 427 " * Default is `String`.",
428 " * Other options are one of 'arraybuffer', 'blob', 'document', 'jso n',", 428 " * Other options are one of 'arraybuffer', 'blob', 'document', 'jso n',",
429 " * 'text'. Some newer browsers will throw NS_ERROR_DOM_INVALID_ACCE SS_ERR if", 429 " * 'text'. Some newer browsers will throw NS_ERROR_DOM_INVALID_ACCE SS_ERR if",
430 " * `responseType` is set while performing a synchronous request.", 430 " * `responseType` is set while performing a synchronous request.",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 " *", 542 " *",
543 " * [oldVersion] should match the database's current [version] exact ly.", 543 " * [oldVersion] should match the database's current [version] exact ly.",
544 " *", 544 " *",
545 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 545 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
546 " */" 546 " */"
547 ] 547 ]
548 } 548 }
549 } 549 }
550 } 550 }
551 } 551 }
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