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

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

Issue 23754012: Fix docs_test. I just learned that when updating docs under html we also need to (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « no previous file | 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 "/// The height of this canvas element in CSS pixels." 181 "/// The height of this canvas element in CSS pixels."
182 ], 182 ],
183 "width": [ 183 "width": [
184 "/// The width of this canvas element in CSS pixels." 184 "/// The width of this canvas element in CSS pixels."
185 ] 185 ]
186 } 186 }
187 }, 187 },
188 "HTMLDivElement": { 188 "HTMLDivElement": {
189 "comment": [ 189 "comment": [
190 "/**", 190 "/**",
191 " * Represents an HTML <div> element.", 191 " * A generic container for content on an HTML page;",
192 " * corresponds to the &lt;div&gt; tag.",
192 " *", 193 " *",
193 " * The [DivElement] is a generic container for content and does not hav e any", 194 " * The [DivElement] is a generic container and does not have any semant ic",
194 " * special significance. It is functionally similar to [SpanElement].", 195 " * significance. It is functionally similar to [SpanElement].",
195 " *", 196 " *",
196 " * The [DivElement] is a block-level element, as opposed to [SpanElemen t],", 197 " * The [DivElement] is a block-level element, as opposed to [SpanElemen t],",
197 " * which is an inline-level element.", 198 " * which is an inline-level element.",
198 " *", 199 " *",
199 " * Example usage:", 200 " * Example usage:",
200 " *", 201 " *",
201 " * DivElement div = new DivElement();", 202 " * DivElement div = new DivElement();",
202 " * div.text = 'Here's my new DivElem", 203 " * div.text = 'Here's my new DivElem",
203 " * document.body.elements.add(elem);", 204 " * document.body.elements.add(elem);",
204 " *", 205 " *",
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 " *", 473 " *",
473 " * is the (more verbose) equivalent of", 474 " * is the (more verbose) equivalent of",
474 " *", 475 " *",
475 " * HttpRequest.getString('http://dartlang.org').then(", 476 " * HttpRequest.getString('http://dartlang.org').then(",
476 " * (result) => print('Request complete: $result'));", 477 " * (result) => print('Request complete: $result'));",
477 " */" 478 " */"
478 ] 479 ]
479 } 480 }
480 } 481 }
481 }, 482 },
483 "dart.dom.indexed_db": {
484 "IDBDatabase": {
485 "comment": [
486 "/**",
487 " * An indexed database object for storing client-side data",
488 " * in web apps.",
489 " */"
490 ]
491 }
492 },
482 "dart.dom.web_audio": { 493 "dart.dom.web_audio": {
483 "ScriptProcessorNode": { 494 "ScriptProcessorNode": {
484 "members": { 495 "members": {
485 "onaudioprocess": [ 496 "onaudioprocess": [
486 "/**", 497 "/**",
487 " * Get a Stream that fires events when AudioProcessingEvents occur. ", 498 " * Get a Stream that fires events when AudioProcessingEvents occur. ",
488 " * This particular stream is special in that it only allows one lis tener to a", 499 " * This particular stream is special in that it only allows one lis tener to a",
489 " * given stream. Converting the returned Stream [asBroadcast] will likely ruin", 500 " * given stream. Converting the returned Stream [asBroadcast] will likely ruin",
490 " * the soft-real-time properties which which these events are fired and can", 501 " * the soft-real-time properties which which these events are fired and can",
491 " * be processed.", 502 " * be processed.",
(...skipping 16 matching lines...) Expand all
508 " *", 519 " *",
509 " * [oldVersion] should match the database's current [version] exact ly.", 520 " * [oldVersion] should match the database's current [version] exact ly.",
510 " *", 521 " *",
511 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 522 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
512 " */" 523 " */"
513 ] 524 ]
514 } 525 }
515 } 526 }
516 } 527 }
517 } 528 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698