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

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

Issue 12163006: Added Area Element class doc. (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
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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 "/// Moved to [HtmlDocument]." 152 "/// Moved to [HtmlDocument]."
153 ], 153 ],
154 "webkitIsFullScreen": [ 154 "webkitIsFullScreen": [
155 "/// Moved to [HtmlDocument]." 155 "/// Moved to [HtmlDocument]."
156 ], 156 ],
157 "webkitPointerLockElement": [ 157 "webkitPointerLockElement": [
158 "/// Moved to [HtmlDocument]." 158 "/// Moved to [HtmlDocument]."
159 ] 159 ]
160 } 160 }
161 }, 161 },
162 "HTMLAreaElement": {
163 "comment": [
164 "/**",
165 " * DOM Area Element, which links regions of an image map with a hyperli nk.",
166 " *",
167 " * The element can also define an uninteractive region of the map.",
168 " *",
169 " * See also:",
170 " *",
171 " * * [Area Element](https://developer.mozilla.org/en-US/docs/HTML/Eleme nt/area)",
172 " * from MDN.",
173 " */"
174 ]
175 },
162 "HTMLCanvasElement": { 176 "HTMLCanvasElement": {
163 "members": { 177 "members": {
164 "height": [ 178 "height": [
165 "/// The height of this canvas element in CSS pixels." 179 "/// The height of this canvas element in CSS pixels."
166 ], 180 ],
167 "toDataURL": [ 181 "toDataURL": [
168 "/**", 182 "/**",
169 " * Returns a data URI containing a representation of the image in t he", 183 " * Returns a data URI containing a representation of the image in t he",
170 " * format specified by type (defaults to 'image/png').", 184 " * format specified by type (defaults to 'image/png').",
171 " *", 185 " *",
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 " * is the (more verbose) equivalent of", 419 " * is the (more verbose) equivalent of",
406 " *", 420 " *",
407 " * var request = new HttpRequest.get('http://dartlang.org',", 421 " * var request = new HttpRequest.get('http://dartlang.org',",
408 " * (event) => print('Request complete'));", 422 " * (event) => print('Request complete'));",
409 " */" 423 " */"
410 ] 424 ]
411 } 425 }
412 } 426 }
413 } 427 }
414 } 428 }
OLDNEW
« sdk/lib/html/dartium/html_dartium.dart ('K') | « 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