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

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

Issue 15102013: add doc for Node.append (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 " *", 320 " *",
321 " * A <menu> element represents an unordered list of menu commands.", 321 " * A <menu> element represents an unordered list of menu commands.",
322 " *", 322 " *",
323 " * See also:", 323 " * See also:",
324 " *", 324 " *",
325 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.", 325 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.",
326 " * * [Menu Element](http://www.w3.org/TR/html5/the-menu-element.html#t he-menu-element) from the W3C.", 326 " * * [Menu Element](http://www.w3.org/TR/html5/the-menu-element.html#t he-menu-element) from the W3C.",
327 " */" 327 " */"
328 ] 328 ]
329 }, 329 },
330 "Node": {
331 "members": {
332 "appendChild": [
333 "/**",
334 " * Adds a node to the end of the child [nodes] list of this node.",
335 " *",
336 " * If the node already exists in this document, it will be removed from its",
337 " * current parent node, then added to this node.",
338 " *",
339 " * This method is more efficient than `nodes.add`, and is the prefe rred",
340 " * way of appending a child node.",
341 " */"
342 ]
343 }
344 },
330 "WebSocket": { 345 "WebSocket": {
331 "comment": [ 346 "comment": [
332 "/**", 347 "/**",
333 " * Use the WebSocket interface to connect to a WebSocket,", 348 " * Use the WebSocket interface to connect to a WebSocket,",
334 " * and to send and receive data on that WebSocket.", 349 " * and to send and receive data on that WebSocket.",
335 " *", 350 " *",
336 " * To use a WebSocket in your web app, first create a WebSocket object, ", 351 " * To use a WebSocket in your web app, first create a WebSocket object, ",
337 " * passing the WebSocket URL as an argument to the constructor.", 352 " * passing the WebSocket URL as an argument to the constructor.",
338 " *", 353 " *",
339 " * var webSocket = new WebSocket('ws://127.0.0.1:1337/ws');", 354 " * var webSocket = new WebSocket('ws://127.0.0.1:1337/ws');",
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 " *", 615 " *",
601 " * [oldVersion] should match the database's current [version] exact ly.", 616 " * [oldVersion] should match the database's current [version] exact ly.",
602 " *", 617 " *",
603 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 618 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
604 " */" 619 " */"
605 ] 620 ]
606 } 621 }
607 } 622 }
608 } 623 }
609 } 624 }
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