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

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

Issue 13116021: Fix docs.dart, which has been sad and neglected. (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 | « tools/dom/docs/bin/docs.dart ('k') | tools/dom/docs/lib/docs.dart » ('j') | 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 " * as specified by [WebSocketEvents].", 336 " * as specified by [WebSocketEvents].",
337 " *", 337 " *",
338 " * For more information, see the", 338 " * For more information, see the",
339 " * [WebSockets](http://www.dartlang.org/docs/library-tour/#html-websock ets)", 339 " * [WebSockets](http://www.dartlang.org/docs/library-tour/#html-websock ets)",
340 " * section of the library tour and", 340 " * section of the library tour and",
341 " * [Introducing WebSockets](http://www.html5rocks.com/en/tutorials/webs ockets/basics/),", 341 " * [Introducing WebSockets](http://www.html5rocks.com/en/tutorials/webs ockets/basics/),",
342 " * an HTML5Rocks.com tutorial.", 342 " * an HTML5Rocks.com tutorial.",
343 " */" 343 " */"
344 ] 344 ]
345 }, 345 },
346 "WorkerContext": {
347 "members": {
348 "webkitRequestFileSystem": [
349 "/**",
350 " * Access a sandboxed file system of the specified `size`. If `pers istent` is",
351 " * true, the application will request permission from the user to c reate",
352 " * lasting storage. This storage cannot be freed without the user's ",
353 " * permission. Returns a [Future] whose value stores a reference to the",
354 " * sandboxed file system for use. Because the file system is sandbo xed,",
355 " * applications cannot access file systems created in other web pag es. ",
356 " */"
357 ],
358 "webkitRequestFileSystemSync": [
359 "/**",
360 " * Access a sandboxed file system of the specified `size`. If `pers istent` is",
361 " * true, the application will request permission from the user to c reate",
362 " * lasting storage. This storage cannot be freed without the user's ",
363 " * permission. This call will block until a reference to the synchr onous file ",
364 " * system API has been obtained. Because the file system is sandbox ed,",
365 " * applications cannot access file systems created in other web pag es. ",
366 " */"
367 ]
368 }
369 },
346 "XMLHttpRequest": { 370 "XMLHttpRequest": {
347 "members": { 371 "members": {
348 "abort": [ 372 "abort": [
349 "/**", 373 "/**",
350 " * Stop the current request.", 374 " * Stop the current request.",
351 " *", 375 " *",
352 " * The request can only be stopped if readyState is `HEADERS_RECIEV ED` or", 376 " * The request can only be stopped if readyState is `HEADERS_RECIEV ED` or",
353 " * `LOADING`. If this method is not in the process of being sent, t he method", 377 " * `LOADING`. If this method is not in the process of being sent, t he method",
354 " * has no effect.", 378 " * has no effect.",
355 " */" 379 " */"
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 " *", 601 " *",
578 " * [oldVersion] should match the database's current [version] exact ly.", 602 " * [oldVersion] should match the database's current [version] exact ly.",
579 " *", 603 " *",
580 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 604 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
581 " */" 605 " */"
582 ] 606 ]
583 } 607 }
584 } 608 }
585 } 609 }
586 } 610 }
OLDNEW
« no previous file with comments | « tools/dom/docs/bin/docs.dart ('k') | tools/dom/docs/lib/docs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698