| OLD | NEW |
| 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 " * request.on.load.add((event) => print('Request complete'));", | 521 " * request.on.load.add((event) => print('Request complete'));", |
| 522 " *", | 522 " *", |
| 523 " * is the (more verbose) equivalent of", | 523 " * is the (more verbose) equivalent of", |
| 524 " *", | 524 " *", |
| 525 " * var request = new HttpRequest.get('http://dartlang.org',", | 525 " * var request = new HttpRequest.get('http://dartlang.org',", |
| 526 " * (event) => print('Request complete'));", | 526 " * (event) => print('Request complete'));", |
| 527 " */" | 527 " */" |
| 528 ] | 528 ] |
| 529 } | 529 } |
| 530 } | 530 } |
| 531 }, |
| 532 "dart.dom.web_sql": { |
| 533 "Database": { |
| 534 "members": { |
| 535 "changeVersion": [ |
| 536 "/**", |
| 537 " * Atomically update the database version to [newVersion], asynchro
nously", |
| 538 " * running [callback] on the [SqlTransaction] representing this", |
| 539 " * [changeVersion] transaction.", |
| 540 " *", |
| 541 " * If [callback] runs successfully, then [successCallback] is calle
d.", |
| 542 " * Otherwise, [errorCallback] is called.", |
| 543 " *", |
| 544 " * [oldVersion] should match the database's current [version] exact
ly.", |
| 545 " *", |
| 546 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", |
| 547 " */" |
| 548 ] |
| 549 } |
| 550 } |
| 531 } | 551 } |
| 532 } | 552 } |
| OLD | NEW |