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

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

Issue 12250022: adding docs to HRElement, testing HTML doc process (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 " * document.body.elements.add(elem);", 243 " * document.body.elements.add(elem);",
244 " *", 244 " *",
245 " * See also:", 245 " * See also:",
246 " *", 246 " *",
247 " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) fr om W3C.", 247 " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) fr om W3C.",
248 " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block -boxes) from W3C.", 248 " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block -boxes) from W3C.",
249 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.", 249 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.",
250 " */" 250 " */"
251 ] 251 ]
252 }, 252 },
253 "HTMLHRElement": {
254 "comment": [
255 "/**",
256 " * An `<hr>` tag.",
257 " */"
258 ]
259 },
253 "HTMLMenuElement": { 260 "HTMLMenuElement": {
254 "comment": [ 261 "comment": [
255 "/**", 262 "/**",
256 " * An HTML <menu> element.", 263 " * An HTML <menu> element.",
257 " *", 264 " *",
258 " * A <menu> element represents an unordered list of menu commands.", 265 " * A <menu> element represents an unordered list of menu commands.",
259 " *", 266 " *",
260 " * See also:", 267 " * See also:",
261 " *", 268 " *",
262 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.", 269 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.",
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 " * is the (more verbose) equivalent of", 523 " * is the (more verbose) equivalent of",
517 " *", 524 " *",
518 " * var request = new HttpRequest.get('http://dartlang.org',", 525 " * var request = new HttpRequest.get('http://dartlang.org',",
519 " * (event) => print('Request complete'));", 526 " * (event) => print('Request complete'));",
520 " */" 527 " */"
521 ] 528 ]
522 } 529 }
523 } 530 }
524 } 531 }
525 } 532 }
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