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

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

Issue 66253002: Version 0.8.10.9 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/tools/VERSION ('k') | dart/tools/dom/src/shared_html.dart » ('j') | 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 "AbstractWorker": { 3 "AbstractWorker": {
4 "members": { 4 "members": {
5 "errorEvent": [ 5 "errorEvent": [
6 "/**", 6 "/**",
7 " * Static factory designed to expose `error` events to event", 7 " * Static factory designed to expose `error` events to event",
8 " * handlers that are not necessarily instances of [AbstractWorker]. ", 8 " * handlers that are not necessarily instances of [AbstractWorker]. ",
9 " *", 9 " *",
10 " * See [EventStreamProvider] for usage information.", 10 " * See [EventStreamProvider] for usage information.",
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 " * This context is extended by [CanvasRenderingContext2D] and", 192 " * This context is extended by [CanvasRenderingContext2D] and",
193 " * [WebGLRenderingContext].", 193 " * [WebGLRenderingContext].",
194 " */" 194 " */"
195 ], 195 ],
196 "members": { 196 "members": {
197 "canvas": [ 197 "canvas": [
198 "/// Reference to the canvas element to which this context belongs." 198 "/// Reference to the canvas element to which this context belongs."
199 ] 199 ]
200 } 200 }
201 }, 201 },
202 "CanvasRenderingContext2D": {
203 "members": {
204 "currentPath": [
205 "/**",
206 " * The current default path of this canvas context, if there is one .",
207 " *",
208 " * ## Other resources",
209 " *",
210 " * * [Current default path]",
211 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the -canvas-element.html#current-default-path)",
212 " * from WHATWG.",
213 " */"
214 ],
215 "imageSmoothingEnabled": [
216 "/**",
217 " * Whether images and patterns on this canvas will be smoothed when this",
218 " * canvas is scaled.",
219 " *",
220 " * ## Other resources",
221 " *",
222 " * * [Image smoothing]",
223 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the -canvas-element.html#image-smoothing)",
224 " * from WHATWG.",
225 " */"
226 ],
227 "webkitBackingStorePixelRatio": [
228 "/**",
229 " * The ratio between this canvas' backing store dimensions and the canvas'",
230 " * logical dimensions.",
231 " *",
232 " * ## Other resources",
233 " *",
234 " * * [High DPI Canvas tutorial]",
235 " * (http://www.html5rocks.com/en/tutorials/canvas/hidpi/) from HTML 5Rocks.",
236 " */"
237 ]
238 }
239 },
202 "Clipboard": { 240 "Clipboard": {
203 "members": { 241 "members": {
204 "getData": [ 242 "getData": [
205 "/**", 243 "/**",
206 " * Gets the data for the specified type.", 244 " * Gets the data for the specified type.",
207 " *", 245 " *",
208 " * The data is only available from within a drop operation (such as an", 246 " * The data is only available from within a drop operation (such as an",
209 " * [Element.onDrop] event) and will return `null` before the event is", 247 " * [Element.onDrop] event) and will return `null` before the event is",
210 " * triggered.", 248 " * triggered.",
211 " *", 249 " *",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 "/**", 447 "/**",
410 " * Finds the first descendant element of this document that matches the", 448 " * Finds the first descendant element of this document that matches the",
411 " * specified group of selectors.", 449 " * specified group of selectors.",
412 " *", 450 " *",
413 " * Unless your webpage contains multiple documents, the top-level", 451 " * Unless your webpage contains multiple documents, the top-level",
414 " * [querySelector]", 452 " * [querySelector]",
415 " * method behaves the same as this method, so you should use it ins tead to", 453 " * method behaves the same as this method, so you should use it ins tead to",
416 " * save typing a few characters.", 454 " * save typing a few characters.",
417 " *", 455 " *",
418 " * [selectors] should be a string using CSS selector syntax.", 456 " * [selectors] should be a string using CSS selector syntax.",
457 " *",
419 " * var element1 = document.querySelector('.className');", 458 " * var element1 = document.querySelector('.className');",
420 " * var element2 = document.querySelector('#id');", 459 " * var element2 = document.querySelector('#id');",
421 " *", 460 " *",
422 " * For details about CSS selector syntax, see the", 461 " * For details about CSS selector syntax, see the",
423 " * [CSS selector specification](http://www.w3.org/TR/css3-selectors /).", 462 " * [CSS selector specification](http://www.w3.org/TR/css3-selectors /).",
424 " */" 463 " */"
425 ], 464 ],
426 "readystatechangeEvent": [ 465 "readystatechangeEvent": [
427 "/**", 466 "/**",
428 " * Static factory designed to expose `readystatechange` events to e vent", 467 " * Static factory designed to expose `readystatechange` events to e vent",
(...skipping 29 matching lines...) Expand all
458 "webkitpointerlockerrorEvent": [ 497 "webkitpointerlockerrorEvent": [
459 "/**", 498 "/**",
460 " * Static factory designed to expose `pointerlockerror` events to e vent", 499 " * Static factory designed to expose `pointerlockerror` events to e vent",
461 " * handlers that are not necessarily instances of [Document].", 500 " * handlers that are not necessarily instances of [Document].",
462 " *", 501 " *",
463 " * See [EventStreamProvider] for usage information.", 502 " * See [EventStreamProvider] for usage information.",
464 " */" 503 " */"
465 ] 504 ]
466 } 505 }
467 }, 506 },
507 "DocumentFragment": {
508 "members": {
509 "querySelector": [
510 "/**",
511 " * Finds the first descendant element of this document fragment tha t matches",
512 " * the specified group of selectors.",
513 " *",
514 " * [selectors] should be a string using CSS selector syntax.",
515 " *",
516 " * var element1 = fragment.querySelector('.className');",
517 " * var element2 = fragment.querySelector('#id');",
518 " *",
519 " * For details about CSS selector syntax, see the",
520 " * [CSS selector specification](http://www.w3.org/TR/css3-selectors /).",
521 " */"
522 ]
523 }
524 },
468 "Element": { 525 "Element": {
469 "comment": [ 526 "comment": [
470 "/**", 527 "/**",
471 " * An abstract class, which all HTML elements extend.", 528 " * An abstract class, which all HTML elements extend.",
472 " */" 529 " */"
473 ], 530 ],
474 "members": { 531 "members": {
475 "abortEvent": [ 532 "abortEvent": [
476 "/**", 533 "/**",
477 " * Static factory designed to expose `abort` events to event", 534 " * Static factory designed to expose `abort` events to event",
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 " *", 1216 " *",
1160 " * [selectors] should be a string using CSS selector syntax.", 1217 " * [selectors] should be a string using CSS selector syntax.",
1161 " *", 1218 " *",
1162 " * // Gets the first descendant with the class 'classname'", 1219 " * // Gets the first descendant with the class 'classname'",
1163 " * var element = element.querySelector('.className');", 1220 " * var element = element.querySelector('.className');",
1164 " * // Gets the element with id 'id'", 1221 " * // Gets the element with id 'id'",
1165 " * var element = element.querySelector('#id');", 1222 " * var element = element.querySelector('#id');",
1166 " * // Gets the first descendant [ImageElement]", 1223 " * // Gets the first descendant [ImageElement]",
1167 " * var img = element.querySelector('img');", 1224 " * var img = element.querySelector('img');",
1168 " *", 1225 " *",
1169 " * See also:", 1226 " * For details about CSS selector syntax, see the",
1170 " *", 1227 " * [CSS selector specification](http://www.w3.org/TR/css3-selectors /).",
1171 " * * [CSS Selectors](http://docs.webplatform.org/wiki/css/selectors )",
1172 " */" 1228 " */"
1173 ], 1229 ],
1174 "resetEvent": [ 1230 "resetEvent": [
1175 "/**", 1231 "/**",
1176 " * Static factory designed to expose `reset` events to event", 1232 " * Static factory designed to expose `reset` events to event",
1177 " * handlers that are not necessarily instances of [Element].", 1233 " * handlers that are not necessarily instances of [Element].",
1178 " *", 1234 " *",
1179 " * See [EventStreamProvider] for usage information.", 1235 " * See [EventStreamProvider] for usage information.",
1180 " */" 1236 " */"
1181 ], 1237 ],
(...skipping 3385 matching lines...) Expand 10 before | Expand all | Expand 10 after
4567 " *", 4623 " *",
4568 " * [oldVersion] should match the database's current [version] exact ly.", 4624 " * [oldVersion] should match the database's current [version] exact ly.",
4569 " *", 4625 " *",
4570 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 4626 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
4571 " */" 4627 " */"
4572 ] 4628 ]
4573 } 4629 }
4574 } 4630 }
4575 } 4631 }
4576 } 4632 }
OLDNEW
« no previous file with comments | « dart/tools/VERSION ('k') | dart/tools/dom/src/shared_html.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698