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

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

Issue 56933002: Version 0.8.10.1 (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/dom.json » ('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": {
4 "members": {
5 "errorEvent": [
6 "/**",
7 " * Static factory designed to expose `error` events to event",
8 " * handlers that are not necessarily instances of [AbstractWorker]. ",
9 " *",
10 " * See [EventStreamProvider] for usage information.",
11 " */"
12 ],
13 "onerror": [
14 "/// Stream of `error` events handled by this [AbstractWorker]."
15 ]
16 }
17 },
18 "ApplicationCache": {
19 "members": {
20 "cachedEvent": [
21 "/**",
22 " * Static factory designed to expose `cached` events to event",
23 " * handlers that are not necessarily instances of [ApplicationCache ].",
24 " *",
25 " * See [EventStreamProvider] for usage information.",
26 " */"
27 ],
28 "checkingEvent": [
29 "/**",
30 " * Static factory designed to expose `checking` events to event",
31 " * handlers that are not necessarily instances of [ApplicationCache ].",
32 " *",
33 " * See [EventStreamProvider] for usage information.",
34 " */"
35 ],
36 "downloadingEvent": [
37 "/**",
38 " * Static factory designed to expose `downloading` events to event" ,
39 " * handlers that are not necessarily instances of [ApplicationCache ].",
40 " *",
41 " * See [EventStreamProvider] for usage information.",
42 " */"
43 ],
44 "errorEvent": [
45 "/**",
46 " * Static factory designed to expose `error` events to event",
47 " * handlers that are not necessarily instances of [ApplicationCache ].",
48 " *",
49 " * See [EventStreamProvider] for usage information.",
50 " */"
51 ],
52 "noupdateEvent": [
53 "/**",
54 " * Static factory designed to expose `noupdate` events to event",
55 " * handlers that are not necessarily instances of [ApplicationCache ].",
56 " *",
57 " * See [EventStreamProvider] for usage information.",
58 " */"
59 ],
60 "obsoleteEvent": [
61 "/**",
62 " * Static factory designed to expose `obsolete` events to event",
63 " * handlers that are not necessarily instances of [ApplicationCache ].",
64 " *",
65 " * See [EventStreamProvider] for usage information.",
66 " */"
67 ],
68 "oncached": [
69 "/// Stream of `cached` events handled by this [ApplicationCache]."
70 ],
71 "onchecking": [
72 "/// Stream of `checking` events handled by this [ApplicationCache]."
73 ],
74 "ondownloading": [
75 "/// Stream of `downloading` events handled by this [ApplicationCache] ."
76 ],
77 "onerror": [
78 "/// Stream of `error` events handled by this [ApplicationCache]."
79 ],
80 "onnoupdate": [
81 "/// Stream of `noupdate` events handled by this [ApplicationCache]."
82 ],
83 "onobsolete": [
84 "/// Stream of `obsolete` events handled by this [ApplicationCache]."
85 ],
86 "onprogress": [
87 "/// Stream of `progress` events handled by this [ApplicationCache]."
88 ],
89 "onupdateready": [
90 "/// Stream of `updateready` events handled by this [ApplicationCache] ."
91 ],
92 "progressEvent": [
93 "/**",
94 " * Static factory designed to expose `progress` events to event",
95 " * handlers that are not necessarily instances of [ApplicationCache ].",
96 " *",
97 " * See [EventStreamProvider] for usage information.",
98 " */"
99 ],
100 "updatereadyEvent": [
101 "/**",
102 " * Static factory designed to expose `updateready` events to event" ,
103 " * handlers that are not necessarily instances of [ApplicationCache ].",
104 " *",
105 " * See [EventStreamProvider] for usage information.",
106 " */"
107 ]
108 }
109 },
3 "CanvasGradient": { 110 "CanvasGradient": {
4 "comment": [ 111 "comment": [
5 "/**", 112 "/**",
6 " * An opaque canvas object representing a gradient.", 113 " * An opaque canvas object representing a gradient.",
7 " *", 114 " *",
8 " * Created by calling [createLinearGradient] or [createRadialGradient] on a", 115 " * Created by calling [createLinearGradient] or [createRadialGradient] on a",
9 " * [CanvasRenderingContext2D] object.", 116 " * [CanvasRenderingContext2D] object.",
10 " *", 117 " *",
11 " * Example usage:", 118 " * Example usage:",
12 " *", 119 " *",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 " * data cannot be accessed.", 214 " * data cannot be accessed.",
108 " *", 215 " *",
109 " * The [type] can have values such as:", 216 " * The [type] can have values such as:",
110 " *", 217 " *",
111 " * * `'Text'`", 218 " * * `'Text'`",
112 " * * `'URL'`", 219 " * * `'URL'`",
113 " */" 220 " */"
114 ] 221 ]
115 } 222 }
116 }, 223 },
224 "DedicatedWorkerGlobalScope": {
225 "members": {
226 "messageEvent": [
227 "/**",
228 " * Static factory designed to expose `message` events to event",
229 " * handlers that are not necessarily instances of [DedicatedWorkerG lobalScope].",
230 " *",
231 " * See [EventStreamProvider] for usage information.",
232 " */"
233 ],
234 "onmessage": [
235 "/// Stream of `message` events handled by this [DedicatedWorkerGlobal Scope]."
236 ]
237 }
238 },
117 "Document": { 239 "Document": {
118 "comment": [ 240 "comment": [
119 "/**", 241 "/**",
120 " * The base class for all documents.", 242 " * The base class for all documents.",
121 " *", 243 " *",
122 " * Each web page loaded in the browser has its own [Document] object, w hich is", 244 " * Each web page loaded in the browser has its own [Document] object, w hich is",
123 " * typically an [HtmlDocument].", 245 " * typically an [HtmlDocument].",
124 " *", 246 " *",
125 " * If you aren't comfortable with DOM concepts, see the Dart tutorial", 247 " * If you aren't comfortable with DOM concepts, see the Dart tutorial",
126 " * [Target 2: Connect Dart & HTML](http://www.dartlang.org/docs/tutoria ls/connect-dart-html/).", 248 " * [Target 2: Connect Dart & HTML](http://www.dartlang.org/docs/tutoria ls/connect-dart-html/).",
127 " */" 249 " */"
128 ], 250 ],
129 "members": { 251 "members": {
252 "onabort": [
253 "/// Stream of `abort` events handled by this [Document]."
254 ],
255 "onbeforecopy": [
256 "/// Stream of `beforecopy` events handled by this [Document]."
257 ],
258 "onbeforecut": [
259 "/// Stream of `beforecut` events handled by this [Document]."
260 ],
261 "onbeforepaste": [
262 "/// Stream of `beforepaste` events handled by this [Document]."
263 ],
264 "onblur": [
265 "/// Stream of `blur` events handled by this [Document]."
266 ],
267 "onchange": [
268 "/// Stream of `change` events handled by this [Document]."
269 ],
270 "onclick": [
271 "/// Stream of `click` events handled by this [Document]."
272 ],
273 "oncontextmenu": [
274 "/// Stream of `contextmenu` events handled by this [Document]."
275 ],
276 "oncopy": [
277 "/// Stream of `copy` events handled by this [Document]."
278 ],
279 "oncut": [
280 "/// Stream of `cut` events handled by this [Document]."
281 ],
282 "ondblclick": [
283 "/// Stream of `doubleclick` events handled by this [Document]."
284 ],
285 "ondrag": [
286 "/// Stream of `drag` events handled by this [Document]."
287 ],
288 "ondragend": [
289 "/// Stream of `dragend` events handled by this [Document]."
290 ],
291 "ondragenter": [
292 "/// Stream of `dragenter` events handled by this [Document]."
293 ],
294 "ondragleave": [
295 "/// Stream of `dragleave` events handled by this [Document]."
296 ],
297 "ondragover": [
298 "/// Stream of `dragover` events handled by this [Document]."
299 ],
300 "ondragstart": [
301 "/// Stream of `dragstart` events handled by this [Document]."
302 ],
303 "ondrop": [
304 "/// Stream of `drop` events handled by this [Document]."
305 ],
306 "onerror": [
307 "/// Stream of `error` events handled by this [Document]."
308 ],
309 "onfocus": [
310 "/// Stream of `focus` events handled by this [Document]."
311 ],
312 "oninput": [
313 "/// Stream of `input` events handled by this [Document]."
314 ],
315 "oninvalid": [
316 "/// Stream of `invalid` events handled by this [Document]."
317 ],
318 "onkeydown": [
319 "/// Stream of `keydown` events handled by this [Document]."
320 ],
321 "onkeypress": [
322 "/// Stream of `keypress` events handled by this [Document]."
323 ],
324 "onkeyup": [
325 "/// Stream of `keyup` events handled by this [Document]."
326 ],
327 "onload": [
328 "/// Stream of `load` events handled by this [Document]."
329 ],
330 "onmousedown": [
331 "/// Stream of `mousedown` events handled by this [Document]."
332 ],
333 "onmouseenter": [
334 "/// Stream of `mouseenter` events handled by this [Document]."
335 ],
336 "onmouseleave": [
337 "/// Stream of `mouseleave` events handled by this [Document]."
338 ],
339 "onmousemove": [
340 "/// Stream of `mousemove` events handled by this [Document]."
341 ],
342 "onmouseout": [
343 "/// Stream of `mouseout` events handled by this [Document]."
344 ],
345 "onmouseover": [
346 "/// Stream of `mouseover` events handled by this [Document]."
347 ],
348 "onmouseup": [
349 "/// Stream of `mouseup` events handled by this [Document]."
350 ],
351 "onmousewheel": [
352 "/// Stream of `mousewheel` events handled by this [Document]."
353 ],
354 "onpaste": [
355 "/// Stream of `paste` events handled by this [Document]."
356 ],
357 "onreadystatechange": [
358 "/// Stream of `readystatechange` events handled by this [Document]."
359 ],
360 "onreset": [
361 "/// Stream of `reset` events handled by this [Document]."
362 ],
363 "onscroll": [
364 "/// Stream of `scroll` events handled by this [Document]."
365 ],
366 "onsearch": [
367 "/// Stream of `search` events handled by this [Document]."
368 ],
369 "onsecuritypolicyviolation": [
370 "/// Stream of `securitypolicyviolation` events handled by this [Docum ent]."
371 ],
372 "onselect": [
373 "/// Stream of `select` events handled by this [Document]."
374 ],
375 "onselectionchange": [
376 "/// Stream of `selectionchange` events handled by this [Document]."
377 ],
378 "onselectstart": [
379 "/// Stream of `selectstart` events handled by this [Document]."
380 ],
381 "onsubmit": [
382 "/// Stream of `submit` events handled by this [Document]."
383 ],
384 "ontouchcancel": [
385 "/// Stream of `touchcancel` events handled by this [Document]."
386 ],
387 "ontouchend": [
388 "/// Stream of `touchend` events handled by this [Document]."
389 ],
390 "ontouchmove": [
391 "/// Stream of `touchmove` events handled by this [Document]."
392 ],
393 "ontouchstart": [
394 "/// Stream of `touchstart` events handled by this [Document]."
395 ],
396 "onwebkitfullscreenchange": [
397 "/// Stream of `fullscreenchange` events handled by this [Document]."
398 ],
399 "onwebkitfullscreenerror": [
400 "/// Stream of `fullscreenerror` events handled by this [Document]."
401 ],
402 "onwebkitpointerlockchange": [
403 "/// Stream of `pointerlockchange` events handled by this [Document]."
404 ],
405 "onwebkitpointerlockerror": [
406 "/// Stream of `pointerlockerror` events handled by this [Document]."
407 ],
130 "querySelector": [ 408 "querySelector": [
131 "/**", 409 "/**",
132 " * Finds the first descendant element of this document that matches the", 410 " * Finds the first descendant element of this document that matches the",
133 " * specified group of selectors.", 411 " * specified group of selectors.",
134 " *", 412 " *",
135 " * Unless your webpage contains multiple documents, the top-level", 413 " * Unless your webpage contains multiple documents, the top-level",
136 " * [querySelector]", 414 " * [querySelector]",
137 " * method behaves the same as this method, so you should use it ins tead to", 415 " * method behaves the same as this method, so you should use it ins tead to",
138 " * save typing a few characters.", 416 " * save typing a few characters.",
139 " *", 417 " *",
140 " * [selectors] should be a string using CSS selector syntax.", 418 " * [selectors] should be a string using CSS selector syntax.",
141 " * var element1 = document.querySelector('.className');", 419 " * var element1 = document.querySelector('.className');",
142 " * var element2 = document.querySelector('#id');", 420 " * var element2 = document.querySelector('#id');",
143 " *", 421 " *",
144 " * For details about CSS selector syntax, see the", 422 " * For details about CSS selector syntax, see the",
145 " * [CSS selector specification](http://www.w3.org/TR/css3-selectors /).", 423 " * [CSS selector specification](http://www.w3.org/TR/css3-selectors /).",
146 " */" 424 " */"
425 ],
426 "readystatechangeEvent": [
427 "/**",
428 " * Static factory designed to expose `readystatechange` events to e vent",
429 " * handlers that are not necessarily instances of [Document].",
430 " *",
431 " * See [EventStreamProvider] for usage information.",
432 " */"
433 ],
434 "securitypolicyviolationEvent": [
435 "/**",
436 " * Static factory designed to expose `securitypolicyviolation` even ts to event",
437 " * handlers that are not necessarily instances of [Document].",
438 " *",
439 " * See [EventStreamProvider] for usage information.",
440 " */"
441 ],
442 "selectionchangeEvent": [
443 "/**",
444 " * Static factory designed to expose `selectionchange` events to ev ent",
445 " * handlers that are not necessarily instances of [Document].",
446 " *",
447 " * See [EventStreamProvider] for usage information.",
448 " */"
449 ],
450 "webkitpointerlockchangeEvent": [
451 "/**",
452 " * Static factory designed to expose `pointerlockchange` events to event",
453 " * handlers that are not necessarily instances of [Document].",
454 " *",
455 " * See [EventStreamProvider] for usage information.",
456 " */"
457 ],
458 "webkitpointerlockerrorEvent": [
459 "/**",
460 " * Static factory designed to expose `pointerlockerror` events to e vent",
461 " * handlers that are not necessarily instances of [Document].",
462 " *",
463 " * See [EventStreamProvider] for usage information.",
464 " */"
147 ] 465 ]
148 } 466 }
149 }, 467 },
150 "Element": { 468 "Element": {
151 "comment": [ 469 "comment": [
152 "/**", 470 "/**",
153 " * An abstract class, which all HTML elements extend.", 471 " * An abstract class, which all HTML elements extend.",
154 " */" 472 " */"
155 ], 473 ],
156 "members": { 474 "members": {
475 "abortEvent": [
476 "/**",
477 " * Static factory designed to expose `abort` events to event",
478 " * handlers that are not necessarily instances of [Element].",
479 " *",
480 " * See [EventStreamProvider] for usage information.",
481 " */"
482 ],
483 "beforecopyEvent": [
484 "/**",
485 " * Static factory designed to expose `beforecopy` events to event",
486 " * handlers that are not necessarily instances of [Element].",
487 " *",
488 " * See [EventStreamProvider] for usage information.",
489 " */"
490 ],
491 "beforecutEvent": [
492 "/**",
493 " * Static factory designed to expose `beforecut` events to event",
494 " * handlers that are not necessarily instances of [Element].",
495 " *",
496 " * See [EventStreamProvider] for usage information.",
497 " */"
498 ],
499 "beforepasteEvent": [
500 "/**",
501 " * Static factory designed to expose `beforepaste` events to event" ,
502 " * handlers that are not necessarily instances of [Element].",
503 " *",
504 " * See [EventStreamProvider] for usage information.",
505 " */"
506 ],
507 "blurEvent": [
508 "/**",
509 " * Static factory designed to expose `blur` events to event",
510 " * handlers that are not necessarily instances of [Element].",
511 " *",
512 " * See [EventStreamProvider] for usage information.",
513 " */"
514 ],
515 "changeEvent": [
516 "/**",
517 " * Static factory designed to expose `change` events to event",
518 " * handlers that are not necessarily instances of [Element].",
519 " *",
520 " * See [EventStreamProvider] for usage information.",
521 " */"
522 ],
523 "clickEvent": [
524 "/**",
525 " * Static factory designed to expose `click` events to event",
526 " * handlers that are not necessarily instances of [Element].",
527 " *",
528 " * See [EventStreamProvider] for usage information.",
529 " */"
530 ],
531 "contextmenuEvent": [
532 "/**",
533 " * Static factory designed to expose `contextmenu` events to event" ,
534 " * handlers that are not necessarily instances of [Element].",
535 " *",
536 " * See [EventStreamProvider] for usage information.",
537 " */"
538 ],
539 "copyEvent": [
540 "/**",
541 " * Static factory designed to expose `copy` events to event",
542 " * handlers that are not necessarily instances of [Element].",
543 " *",
544 " * See [EventStreamProvider] for usage information.",
545 " */"
546 ],
547 "cutEvent": [
548 "/**",
549 " * Static factory designed to expose `cut` events to event",
550 " * handlers that are not necessarily instances of [Element].",
551 " *",
552 " * See [EventStreamProvider] for usage information.",
553 " */"
554 ],
555 "dblclickEvent": [
556 "/**",
557 " * Static factory designed to expose `doubleclick` events to event" ,
558 " * handlers that are not necessarily instances of [Element].",
559 " *",
560 " * See [EventStreamProvider] for usage information.",
561 " */"
562 ],
563 "dragendEvent": [
564 "/**",
565 " * A stream of `dragend` events fired when an element completes a d rag",
566 " * operation.",
567 " *",
568 " * ## Other resources",
569 " *",
570 " * * [Drag and drop sample]",
571 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
572 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
573 " * from HTML5Rocks.",
574 " * * [Drag and drop specification]",
575 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
576 " * from WHATWG.",
577 " */"
578 ],
579 "dragenterEvent": [
580 "/**",
581 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged",
582 " * over an element.",
583 " *",
584 " * ## Other resources",
585 " *",
586 " * * [Drag and drop sample]",
587 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
588 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
589 " * from HTML5Rocks.",
590 " * * [Drag and drop specification]",
591 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
592 " * from WHATWG.",
593 " */"
594 ],
595 "dragEvent": [
596 "/**",
597 " * A stream of `drag` events fired when an element is currently bei ng dragged.",
598 " *",
599 " * A `drag` event is added to this stream as soon as the drag begin s.",
600 " * A `drag` event is also added to this stream at intervals while t he drag",
601 " * operation is still ongoing.",
602 " *",
603 " * ## Other resources",
604 " *",
605 " * * [Drag and drop sample]",
606 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
607 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
608 " * from HTML5Rocks.",
609 " * * [Drag and drop specification]",
610 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
611 " * from WHATWG.",
612 " */"
613 ],
614 "draggable": [
615 "/**",
616 " * Indicates whether the element can be dragged and dropped.",
617 " *",
618 " * ## Other resources",
619 " *",
620 " * * [Drag and drop sample]",
621 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
622 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
623 " * from HTML5Rocks.",
624 " * * [Drag and drop specification]",
625 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
626 " * from WHATWG.",
627 " */"
628 ],
629 "dragleaveEvent": [
630 "/**",
631 " * A stream of `dragleave` events fired when an object being dragge d over an",
632 " * element leaves the element's target area.",
633 " *",
634 " * ## Other resources",
635 " *",
636 " * * [Drag and drop sample]",
637 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
638 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
639 " * from HTML5Rocks.",
640 " * * [Drag and drop specification]",
641 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
642 " * from WHATWG.",
643 " */"
644 ],
645 "dragoverEvent": [
646 "/**",
647 " * A stream of `dragover` events fired when a dragged object is cur rently",
648 " * being dragged over an element.",
649 " *",
650 " * ## Other resources",
651 " *",
652 " * * [Drag and drop sample]",
653 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
654 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
655 " * from HTML5Rocks.",
656 " * * [Drag and drop specification]",
657 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
658 " * from WHATWG.",
659 " */"
660 ],
661 "dragstartEvent": [
662 "/**",
663 " * A stream of `dragstart` events for a dragged element whose drag has begun.",
664 " *",
665 " * ## Other resources",
666 " *",
667 " * * [Drag and drop sample]",
668 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
669 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
670 " * from HTML5Rocks.",
671 " * * [Drag and drop specification]",
672 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
673 " * from WHATWG.",
674 " */"
675 ],
676 "dropEvent": [
677 "/**",
678 " * A stream of `drop` events fired when a dragged object is dropped on an",
679 " * element.",
680 " *",
681 " * ## Other resources",
682 " *",
683 " * * [Drag and drop sample]",
684 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
685 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
686 " * from HTML5Rocks.",
687 " * * [Drag and drop specification]",
688 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
689 " * from WHATWG.",
690 " */"
691 ],
692 "errorEvent": [
693 "/**",
694 " * Static factory designed to expose `error` events to event",
695 " * handlers that are not necessarily instances of [Element].",
696 " *",
697 " * See [EventStreamProvider] for usage information.",
698 " */"
699 ],
700 "focusEvent": [
701 "/**",
702 " * Static factory designed to expose `focus` events to event",
703 " * handlers that are not necessarily instances of [Element].",
704 " *",
705 " * See [EventStreamProvider] for usage information.",
706 " */"
707 ],
708 "getBoundingClientRect": [
709 "/**",
710 " * The smallest bounding rectangle that encompasses this element's padding,",
711 " * scrollbar, and border.",
712 " *",
713 " * ## Other resources",
714 " *",
715 " * * [Element.getBoundingClientRect]",
716 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getBou ndingClientRect)",
717 " * from MDN.",
718 " * * [The getBoundingClientRect() method]",
719 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods) from W3C.",
720 " */"
721 ],
722 "getClientRects": [
723 "/**",
724 " * A list of bounding rectangles for each box associated with this element.",
725 " *",
726 " * ## Other resources",
727 " *",
728 " * * [Element.getClientRects]",
729 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getCli entRects)",
730 " * from MDN.",
731 " * * [The getClientRects() method]",
732 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods) from W3C.",
733 " */"
734 ],
735 "hidden": [
736 "/**",
737 " * Indicates whether the element is not relevant to the page's curr ent state.",
738 " *",
739 " * ## Other resources",
740 " *",
741 " * * [Hidden attribute specification]",
742 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/edi ting.html#the-hidden-attribute)",
743 " * from WHATWG.",
744 " */"
745 ],
746 "inputEvent": [
747 "/**",
748 " * Static factory designed to expose `input` events to event",
749 " * handlers that are not necessarily instances of [Element].",
750 " *",
751 " * See [EventStreamProvider] for usage information.",
752 " */"
753 ],
754 "inputMethodContext": [
755 "/**",
756 " * The current state of IME composition.",
757 " *",
758 " * ## Other resources",
759 " *",
760 " * * [Input method editor specification]",
761 " * (http://www.w3.org/TR/ime-api/) from W3C.",
762 " */"
763 ],
764 "invalidEvent": [
765 "/**",
766 " * Static factory designed to expose `invalid` events to event",
767 " * handlers that are not necessarily instances of [Element].",
768 " *",
769 " * See [EventStreamProvider] for usage information.",
770 " */"
771 ],
772 "keydownEvent": [
773 "/**",
774 " * Static factory designed to expose `keydown` events to event",
775 " * handlers that are not necessarily instances of [Element].",
776 " *",
777 " * See [EventStreamProvider] for usage information.",
778 " */"
779 ],
780 "keypressEvent": [
781 "/**",
782 " * Static factory designed to expose `keypress` events to event",
783 " * handlers that are not necessarily instances of [Element].",
784 " *",
785 " * See [EventStreamProvider] for usage information.",
786 " */"
787 ],
788 "keyupEvent": [
789 "/**",
790 " * Static factory designed to expose `keyup` events to event",
791 " * handlers that are not necessarily instances of [Element].",
792 " *",
793 " * See [EventStreamProvider] for usage information.",
794 " */"
795 ],
796 "loadEvent": [
797 "/**",
798 " * Static factory designed to expose `load` events to event",
799 " * handlers that are not necessarily instances of [Element].",
800 " *",
801 " * See [EventStreamProvider] for usage information.",
802 " */"
803 ],
804 "mousedownEvent": [
805 "/**",
806 " * Static factory designed to expose `mousedown` events to event",
807 " * handlers that are not necessarily instances of [Element].",
808 " *",
809 " * See [EventStreamProvider] for usage information.",
810 " */"
811 ],
812 "mouseenterEvent": [
813 "/**",
814 " * Static factory designed to expose `mouseenter` events to event",
815 " * handlers that are not necessarily instances of [Element].",
816 " *",
817 " * See [EventStreamProvider] for usage information.",
818 " */"
819 ],
820 "mouseleaveEvent": [
821 "/**",
822 " * Static factory designed to expose `mouseleave` events to event",
823 " * handlers that are not necessarily instances of [Element].",
824 " *",
825 " * See [EventStreamProvider] for usage information.",
826 " */"
827 ],
828 "mousemoveEvent": [
829 "/**",
830 " * Static factory designed to expose `mousemove` events to event",
831 " * handlers that are not necessarily instances of [Element].",
832 " *",
833 " * See [EventStreamProvider] for usage information.",
834 " */"
835 ],
836 "mouseoutEvent": [
837 "/**",
838 " * Static factory designed to expose `mouseout` events to event",
839 " * handlers that are not necessarily instances of [Element].",
840 " *",
841 " * See [EventStreamProvider] for usage information.",
842 " */"
843 ],
844 "mouseoverEvent": [
845 "/**",
846 " * Static factory designed to expose `mouseover` events to event",
847 " * handlers that are not necessarily instances of [Element].",
848 " *",
849 " * See [EventStreamProvider] for usage information.",
850 " */"
851 ],
852 "mouseupEvent": [
853 "/**",
854 " * Static factory designed to expose `mouseup` events to event",
855 " * handlers that are not necessarily instances of [Element].",
856 " *",
857 " * See [EventStreamProvider] for usage information.",
858 " */"
859 ],
860 "onabort": [
861 "/// Stream of `abort` events handled by this [Element]."
862 ],
863 "onbeforecopy": [
864 "/// Stream of `beforecopy` events handled by this [Element]."
865 ],
866 "onbeforecut": [
867 "/// Stream of `beforecut` events handled by this [Element]."
868 ],
869 "onbeforepaste": [
870 "/// Stream of `beforepaste` events handled by this [Element]."
871 ],
872 "onblur": [
873 "/// Stream of `blur` events handled by this [Element]."
874 ],
875 "onchange": [
876 "/// Stream of `change` events handled by this [Element]."
877 ],
878 "onclick": [
879 "/// Stream of `click` events handled by this [Element]."
880 ],
881 "oncontextmenu": [
882 "/// Stream of `contextmenu` events handled by this [Element]."
883 ],
884 "oncopy": [
885 "/// Stream of `copy` events handled by this [Element]."
886 ],
887 "oncut": [
888 "/// Stream of `cut` events handled by this [Element]."
889 ],
890 "ondblclick": [
891 "/// Stream of `doubleclick` events handled by this [Element]."
892 ],
893 "ondrag": [
894 "/**",
895 " * A stream of `drag` events fired when this element currently bein g dragged.",
896 " *",
897 " * A `drag` event is added to this stream as soon as the drag begin s.",
898 " * A `drag` event is also added to this stream at intervals while t he drag",
899 " * operation is still ongoing.",
900 " *",
901 " * ## Other resources",
902 " *",
903 " * * [Drag and drop sample]",
904 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
905 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
906 " * from HTML5Rocks.",
907 " * * [Drag and drop specification]",
908 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
909 " * from WHATWG.",
910 " */"
911 ],
912 "ondragend": [
913 "/**",
914 " * A stream of `dragend` events fired when this element completes a drag",
915 " * operation.",
916 " *",
917 " * ## Other resources",
918 " *",
919 " * * [Drag and drop sample]",
920 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
921 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
922 " * from HTML5Rocks.",
923 " * * [Drag and drop specification]",
924 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
925 " * from WHATWG.",
926 " */"
927 ],
928 "ondragenter": [
929 "/**",
930 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged",
931 " * over this element.",
932 " *",
933 " * ## Other resources",
934 " *",
935 " * * [Drag and drop sample]",
936 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
937 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
938 " * from HTML5Rocks.",
939 " * * [Drag and drop specification]",
940 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
941 " * from WHATWG.",
942 " */"
943 ],
944 "ondragleave": [
945 "/**",
946 " * A stream of `dragleave` events fired when an object being dragge d over this",
947 " * element leaves this element's target area.",
948 " *",
949 " * ## Other resources",
950 " *",
951 " * * [Drag and drop sample]",
952 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
953 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
954 " * from HTML5Rocks.",
955 " * * [Drag and drop specification]",
956 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
957 " * from WHATWG.",
958 " */"
959 ],
960 "ondragover": [
961 "/**",
962 " * A stream of `dragover` events fired when a dragged object is cur rently",
963 " * being dragged over this element.",
964 " *",
965 " * ## Other resources",
966 " *",
967 " * * [Drag and drop sample]",
968 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
969 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
970 " * from HTML5Rocks.",
971 " * * [Drag and drop specification]",
972 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
973 " * from WHATWG.",
974 " */"
975 ],
976 "ondragstart": [
977 "/**",
978 " * A stream of `dragstart` events fired when this element starts be ing",
979 " * dragged.",
980 " *",
981 " * ## Other resources",
982 " *",
983 " * * [Drag and drop sample]",
984 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
985 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
986 " * from HTML5Rocks.",
987 " * * [Drag and drop specification]",
988 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
989 " * from WHATWG.",
990 " */"
991 ],
992 "ondrop": [
993 "/**",
994 " * A stream of `drop` events fired when a dragged object is dropped on this",
995 " * element.",
996 " *",
997 " * ## Other resources",
998 " *",
999 " * * [Drag and drop sample]",
1000 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
1001 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
1002 " * from HTML5Rocks.",
1003 " * * [Drag and drop specification]",
1004 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
1005 " * from WHATWG.",
1006 " */"
1007 ],
1008 "onerror": [
1009 "/// Stream of `error` events handled by this [Element]."
1010 ],
1011 "onfocus": [
1012 "/// Stream of `focus` events handled by this [Element]."
1013 ],
1014 "oninput": [
1015 "/// Stream of `input` events handled by this [Element]."
1016 ],
1017 "oninvalid": [
1018 "/// Stream of `invalid` events handled by this [Element]."
1019 ],
1020 "onkeydown": [
1021 "/// Stream of `keydown` events handled by this [Element]."
1022 ],
1023 "onkeypress": [
1024 "/// Stream of `keypress` events handled by this [Element]."
1025 ],
1026 "onkeyup": [
1027 "/// Stream of `keyup` events handled by this [Element]."
1028 ],
1029 "onload": [
1030 "/// Stream of `load` events handled by this [Element]."
1031 ],
1032 "onmousedown": [
1033 "/// Stream of `mousedown` events handled by this [Element]."
1034 ],
1035 "onmouseenter": [
1036 "/// Stream of `mouseenter` events handled by this [Element]."
1037 ],
1038 "onmouseleave": [
1039 "/// Stream of `mouseleave` events handled by this [Element]."
1040 ],
1041 "onmousemove": [
1042 "/// Stream of `mousemove` events handled by this [Element]."
1043 ],
1044 "onmouseout": [
1045 "/// Stream of `mouseout` events handled by this [Element]."
1046 ],
1047 "onmouseover": [
1048 "/// Stream of `mouseover` events handled by this [Element]."
1049 ],
1050 "onmouseup": [
1051 "/// Stream of `mouseup` events handled by this [Element]."
1052 ],
1053 "onmousewheel": [
1054 "/// Stream of `mousewheel` events handled by this [Element]."
1055 ],
1056 "onpaste": [
1057 "/// Stream of `paste` events handled by this [Element]."
1058 ],
1059 "onreset": [
1060 "/// Stream of `reset` events handled by this [Element]."
1061 ],
1062 "onscroll": [
1063 "/// Stream of `scroll` events handled by this [Element]."
1064 ],
1065 "onsearch": [
1066 "/// Stream of `search` events handled by this [Element]."
1067 ],
1068 "onselect": [
1069 "/// Stream of `select` events handled by this [Element]."
1070 ],
1071 "onselectstart": [
1072 "/// Stream of `selectstart` events handled by this [Element]."
1073 ],
1074 "onsubmit": [
1075 "/// Stream of `submit` events handled by this [Element]."
1076 ],
1077 "ontouchcancel": [
1078 "/// Stream of `touchcancel` events handled by this [Element]."
1079 ],
1080 "ontouchend": [
1081 "/// Stream of `touchend` events handled by this [Element]."
1082 ],
1083 "ontouchenter": [
1084 "/// Stream of `touchenter` events handled by this [Element]."
1085 ],
1086 "ontouchleave": [
1087 "/// Stream of `touchleave` events handled by this [Element]."
1088 ],
1089 "ontouchmove": [
1090 "/// Stream of `touchmove` events handled by this [Element]."
1091 ],
1092 "ontouchstart": [
1093 "/// Stream of `touchstart` events handled by this [Element]."
1094 ],
1095 "ontransitionend": [
1096 "/// Stream of `transitionend` events handled by this [Element]."
1097 ],
1098 "onwebkitfullscreenchange": [
1099 "/// Stream of `fullscreenchange` events handled by this [Element]."
1100 ],
1101 "onwebkitfullscreenerror": [
1102 "/// Stream of `fullscreenerror` events handled by this [Element]."
1103 ],
1104 "pasteEvent": [
1105 "/**",
1106 " * Static factory designed to expose `paste` events to event",
1107 " * handlers that are not necessarily instances of [Element].",
1108 " *",
1109 " * See [EventStreamProvider] for usage information.",
1110 " */"
1111 ],
1112 "pseudo": [
1113 "/**",
1114 " * The name of this element's custom pseudo-element.",
1115 " *",
1116 " * This value must begin with an x and a hyphen, `x-`, to be consid ered valid.",
1117 " *",
1118 " * ## Other resources",
1119 " *",
1120 " * * [Using custom pseudo elements]",
1121 " * (http://www.html5rocks.com/en/tutorials/webcomponents/shadowdom- 201/#toc-custom-pseduo)",
1122 " * from HTML5Rocks.",
1123 " * * [Custom pseudo-elements]",
1124 " * (http://www.w3.org/TR/shadow-dom/#custom-pseudo-elements) from W 3C.",
1125 " */"
1126 ],
157 "querySelector": [ 1127 "querySelector": [
158 "/**", 1128 "/**",
159 " * Finds the first descendant element of this element that matches the", 1129 " * Finds the first descendant element of this element that matches the",
160 " * specified group of selectors.", 1130 " * specified group of selectors.",
161 " *", 1131 " *",
162 " * [selectors] should be a string using CSS selector syntax.", 1132 " * [selectors] should be a string using CSS selector syntax.",
163 " *", 1133 " *",
164 " * // Gets the first descendant with the class 'classname'", 1134 " * // Gets the first descendant with the class 'classname'",
165 " * var element = element.querySelector('.className');", 1135 " * var element = element.querySelector('.className');",
166 " * // Gets the element with id 'id'", 1136 " * // Gets the element with id 'id'",
167 " * var element = element.querySelector('#id');", 1137 " * var element = element.querySelector('#id');",
168 " * // Gets the first descendant [ImageElement]", 1138 " * // Gets the first descendant [ImageElement]",
169 " * var img = element.querySelector('img');", 1139 " * var img = element.querySelector('img');",
170 " *", 1140 " *",
171 " * See also:", 1141 " * See also:",
172 " *", 1142 " *",
173 " * * [CSS Selectors](http://docs.webplatform.org/wiki/css/selectors )", 1143 " * * [CSS Selectors](http://docs.webplatform.org/wiki/css/selectors )",
174 " */" 1144 " */"
1145 ],
1146 "resetEvent": [
1147 "/**",
1148 " * Static factory designed to expose `reset` events to event",
1149 " * handlers that are not necessarily instances of [Element].",
1150 " *",
1151 " * See [EventStreamProvider] for usage information.",
1152 " */"
1153 ],
1154 "scrollEvent": [
1155 "/**",
1156 " * Static factory designed to expose `scroll` events to event",
1157 " * handlers that are not necessarily instances of [Element].",
1158 " *",
1159 " * See [EventStreamProvider] for usage information.",
1160 " */"
1161 ],
1162 "searchEvent": [
1163 "/**",
1164 " * Static factory designed to expose `search` events to event",
1165 " * handlers that are not necessarily instances of [Element].",
1166 " *",
1167 " * See [EventStreamProvider] for usage information.",
1168 " */"
1169 ],
1170 "selectEvent": [
1171 "/**",
1172 " * Static factory designed to expose `select` events to event",
1173 " * handlers that are not necessarily instances of [Element].",
1174 " *",
1175 " * See [EventStreamProvider] for usage information.",
1176 " */"
1177 ],
1178 "selectstartEvent": [
1179 "/**",
1180 " * Static factory designed to expose `selectstart` events to event" ,
1181 " * handlers that are not necessarily instances of [Element].",
1182 " *",
1183 " * See [EventStreamProvider] for usage information.",
1184 " */"
1185 ],
1186 "submitEvent": [
1187 "/**",
1188 " * Static factory designed to expose `submit` events to event",
1189 " * handlers that are not necessarily instances of [Element].",
1190 " *",
1191 " * See [EventStreamProvider] for usage information.",
1192 " */"
1193 ],
1194 "touchcancelEvent": [
1195 "/**",
1196 " * Static factory designed to expose `touchcancel` events to event" ,
1197 " * handlers that are not necessarily instances of [Element].",
1198 " *",
1199 " * See [EventStreamProvider] for usage information.",
1200 " */"
1201 ],
1202 "touchendEvent": [
1203 "/**",
1204 " * Static factory designed to expose `touchend` events to event",
1205 " * handlers that are not necessarily instances of [Element].",
1206 " *",
1207 " * See [EventStreamProvider] for usage information.",
1208 " */"
1209 ],
1210 "touchenterEvent": [
1211 "/**",
1212 " * Static factory designed to expose `touchenter` events to event",
1213 " * handlers that are not necessarily instances of [Element].",
1214 " *",
1215 " * See [EventStreamProvider] for usage information.",
1216 " */"
1217 ],
1218 "touchleaveEvent": [
1219 "/**",
1220 " * Static factory designed to expose `touchleave` events to event",
1221 " * handlers that are not necessarily instances of [Element].",
1222 " *",
1223 " * See [EventStreamProvider] for usage information.",
1224 " */"
1225 ],
1226 "touchmoveEvent": [
1227 "/**",
1228 " * Static factory designed to expose `touchmove` events to event",
1229 " * handlers that are not necessarily instances of [Element].",
1230 " *",
1231 " * See [EventStreamProvider] for usage information.",
1232 " */"
1233 ],
1234 "touchstartEvent": [
1235 "/**",
1236 " * Static factory designed to expose `touchstart` events to event",
1237 " * handlers that are not necessarily instances of [Element].",
1238 " *",
1239 " * See [EventStreamProvider] for usage information.",
1240 " */"
1241 ],
1242 "translate": [
1243 "/**",
1244 " * Specifies whether this element's text content changes when the p age is",
1245 " * localized.",
1246 " *",
1247 " * ## Other resources",
1248 " *",
1249 " * * [The translate attribute]",
1250 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/ele ments.html#the-translate-attribute)",
1251 " * from WHATWG.",
1252 " */"
1253 ],
1254 "webkitdropzone": [
1255 "/**",
1256 " * A set of space-separated keywords that specify what kind of data this",
1257 " * Element accepts on drop and what to do with that data.",
1258 " *",
1259 " * ## Other resources",
1260 " *",
1261 " * * [Drag and drop sample]",
1262 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
1263 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
1264 " * from HTML5Rocks.",
1265 " * * [Drag and drop specification]",
1266 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
1267 " * from WHATWG.",
1268 " */"
1269 ],
1270 "webkitfullscreenchangeEvent": [
1271 "/**",
1272 " * Static factory designed to expose `fullscreenchange` events to e vent",
1273 " * handlers that are not necessarily instances of [Element].",
1274 " *",
1275 " * See [EventStreamProvider] for usage information.",
1276 " */"
1277 ],
1278 "webkitfullscreenerrorEvent": [
1279 "/**",
1280 " * Static factory designed to expose `fullscreenerror` events to ev ent",
1281 " * handlers that are not necessarily instances of [Element].",
1282 " *",
1283 " * See [EventStreamProvider] for usage information.",
1284 " */"
1285 ],
1286 "webkitRegionOverset": [
1287 "/**",
1288 " * The current state of this region.",
1289 " *",
1290 " * If `\"empty\"`, then there is no content in this region.",
1291 " * If `\"fit\"`, then content fits into this region, and more conte nt can be",
1292 " * added. If `\"overset\"`, then there is more content than can be fit into this",
1293 " * region.",
1294 " *",
1295 " * ## Other resources",
1296 " *",
1297 " * * [CSS regions and exclusions tutorial]",
1298 " * (http://www.html5rocks.com/en/tutorials/regions/adobe/) from HTM L5Rocks.",
1299 " * * [Regions](http://html.adobe.com/webplatform/layout/regions/) f rom Adobe.",
1300 " * * [CSS regions specification]",
1301 " * (http://www.w3.org/TR/css3-regions/) from W3C.",
1302 " */"
1303 ]
1304 }
1305 },
1306 "EventSource": {
1307 "members": {
1308 "errorEvent": [
1309 "/**",
1310 " * Static factory designed to expose `error` events to event",
1311 " * handlers that are not necessarily instances of [EventSource].",
1312 " *",
1313 " * See [EventStreamProvider] for usage information.",
1314 " */"
1315 ],
1316 "messageEvent": [
1317 "/**",
1318 " * Static factory designed to expose `message` events to event",
1319 " * handlers that are not necessarily instances of [EventSource].",
1320 " *",
1321 " * See [EventStreamProvider] for usage information.",
1322 " */"
1323 ],
1324 "onerror": [
1325 "/// Stream of `error` events handled by this [EventSource]."
1326 ],
1327 "onmessage": [
1328 "/// Stream of `message` events handled by this [EventSource]."
1329 ],
1330 "onopen": [
1331 "/// Stream of `open` events handled by this [EventSource]."
1332 ],
1333 "openEvent": [
1334 "/**",
1335 " * Static factory designed to expose `open` events to event",
1336 " * handlers that are not necessarily instances of [EventSource].",
1337 " *",
1338 " * See [EventStreamProvider] for usage information.",
1339 " */"
1340 ]
1341 }
1342 },
1343 "FileReader": {
1344 "members": {
1345 "abortEvent": [
1346 "/**",
1347 " * Static factory designed to expose `abort` events to event",
1348 " * handlers that are not necessarily instances of [FileReader].",
1349 " *",
1350 " * See [EventStreamProvider] for usage information.",
1351 " */"
1352 ],
1353 "errorEvent": [
1354 "/**",
1355 " * Static factory designed to expose `error` events to event",
1356 " * handlers that are not necessarily instances of [FileReader].",
1357 " *",
1358 " * See [EventStreamProvider] for usage information.",
1359 " */"
1360 ],
1361 "loadendEvent": [
1362 "/**",
1363 " * Static factory designed to expose `loadend` events to event",
1364 " * handlers that are not necessarily instances of [FileReader].",
1365 " *",
1366 " * See [EventStreamProvider] for usage information.",
1367 " */"
1368 ],
1369 "loadEvent": [
1370 "/**",
1371 " * Static factory designed to expose `load` events to event",
1372 " * handlers that are not necessarily instances of [FileReader].",
1373 " *",
1374 " * See [EventStreamProvider] for usage information.",
1375 " */"
1376 ],
1377 "loadstartEvent": [
1378 "/**",
1379 " * Static factory designed to expose `loadstart` events to event",
1380 " * handlers that are not necessarily instances of [FileReader].",
1381 " *",
1382 " * See [EventStreamProvider] for usage information.",
1383 " */"
1384 ],
1385 "onabort": [
1386 "/// Stream of `abort` events handled by this [FileReader]."
1387 ],
1388 "onerror": [
1389 "/// Stream of `error` events handled by this [FileReader]."
1390 ],
1391 "onload": [
1392 "/// Stream of `load` events handled by this [FileReader]."
1393 ],
1394 "onloadend": [
1395 "/// Stream of `loadend` events handled by this [FileReader]."
1396 ],
1397 "onloadstart": [
1398 "/// Stream of `loadstart` events handled by this [FileReader]."
1399 ],
1400 "onprogress": [
1401 "/// Stream of `progress` events handled by this [FileReader]."
1402 ],
1403 "progressEvent": [
1404 "/**",
1405 " * Static factory designed to expose `progress` events to event",
1406 " * handlers that are not necessarily instances of [FileReader].",
1407 " *",
1408 " * See [EventStreamProvider] for usage information.",
1409 " */"
1410 ]
1411 }
1412 },
1413 "FileWriter": {
1414 "members": {
1415 "abortEvent": [
1416 "/**",
1417 " * Static factory designed to expose `abort` events to event",
1418 " * handlers that are not necessarily instances of [FileWriter].",
1419 " *",
1420 " * See [EventStreamProvider] for usage information.",
1421 " */"
1422 ],
1423 "errorEvent": [
1424 "/**",
1425 " * Static factory designed to expose `error` events to event",
1426 " * handlers that are not necessarily instances of [FileWriter].",
1427 " *",
1428 " * See [EventStreamProvider] for usage information.",
1429 " */"
1430 ],
1431 "onabort": [
1432 "/// Stream of `abort` events handled by this [FileWriter]."
1433 ],
1434 "onerror": [
1435 "/// Stream of `error` events handled by this [FileWriter]."
1436 ],
1437 "onprogress": [
1438 "/// Stream of `progress` events handled by this [FileWriter]."
1439 ],
1440 "onwrite": [
1441 "/// Stream of `write` events handled by this [FileWriter]."
1442 ],
1443 "onwriteend": [
1444 "/// Stream of `writeend` events handled by this [FileWriter]."
1445 ],
1446 "onwritestart": [
1447 "/// Stream of `writestart` events handled by this [FileWriter]."
1448 ],
1449 "progressEvent": [
1450 "/**",
1451 " * Static factory designed to expose `progress` events to event",
1452 " * handlers that are not necessarily instances of [FileWriter].",
1453 " *",
1454 " * See [EventStreamProvider] for usage information.",
1455 " */"
1456 ],
1457 "writeendEvent": [
1458 "/**",
1459 " * Static factory designed to expose `writeend` events to event",
1460 " * handlers that are not necessarily instances of [FileWriter].",
1461 " *",
1462 " * See [EventStreamProvider] for usage information.",
1463 " */"
1464 ],
1465 "writeEvent": [
1466 "/**",
1467 " * Static factory designed to expose `write` events to event",
1468 " * handlers that are not necessarily instances of [FileWriter].",
1469 " *",
1470 " * See [EventStreamProvider] for usage information.",
1471 " */"
1472 ],
1473 "writestartEvent": [
1474 "/**",
1475 " * Static factory designed to expose `writestart` events to event",
1476 " * handlers that are not necessarily instances of [FileWriter].",
1477 " *",
1478 " * See [EventStreamProvider] for usage information.",
1479 " */"
175 ] 1480 ]
176 } 1481 }
177 }, 1482 },
178 "HTMLAreaElement": { 1483 "HTMLAreaElement": {
179 "comment": [ 1484 "comment": [
180 "/**", 1485 "/**",
181 " * DOM Area Element, which links regions of an image map with a hyperli nk.", 1486 " * DOM Area Element, which links regions of an image map with a hyperli nk.",
182 " *", 1487 " *",
183 " * The element can also define an uninteractive region of the map.", 1488 " * The element can also define an uninteractive region of the map.",
184 " *", 1489 " *",
185 " * See also:", 1490 " * See also:",
186 " *", 1491 " *",
187 " * * [<area>](https://developer.mozilla.org/en-US/docs/HTML/Element/are a)", 1492 " * * [<area>](https://developer.mozilla.org/en-US/docs/HTML/Element/are a)",
188 " * on MDN.", 1493 " * on MDN.",
189 " */" 1494 " */"
190 ] 1495 ]
191 }, 1496 },
1497 "HTMLBodyElement": {
1498 "members": {
1499 "blurEvent": [
1500 "/**",
1501 " * Static factory designed to expose `blur` events to event",
1502 " * handlers that are not necessarily instances of [BodyElement].",
1503 " *",
1504 " * See [EventStreamProvider] for usage information.",
1505 " */"
1506 ],
1507 "errorEvent": [
1508 "/**",
1509 " * Static factory designed to expose `error` events to event",
1510 " * handlers that are not necessarily instances of [BodyElement].",
1511 " *",
1512 " * See [EventStreamProvider] for usage information.",
1513 " */"
1514 ],
1515 "focusEvent": [
1516 "/**",
1517 " * Static factory designed to expose `focus` events to event",
1518 " * handlers that are not necessarily instances of [BodyElement].",
1519 " *",
1520 " * See [EventStreamProvider] for usage information.",
1521 " */"
1522 ],
1523 "hashchangeEvent": [
1524 "/**",
1525 " * Static factory designed to expose `hashchange` events to event",
1526 " * handlers that are not necessarily instances of [BodyElement].",
1527 " *",
1528 " * See [EventStreamProvider] for usage information.",
1529 " */"
1530 ],
1531 "loadEvent": [
1532 "/**",
1533 " * Static factory designed to expose `load` events to event",
1534 " * handlers that are not necessarily instances of [BodyElement].",
1535 " *",
1536 " * See [EventStreamProvider] for usage information.",
1537 " */"
1538 ],
1539 "messageEvent": [
1540 "/**",
1541 " * Static factory designed to expose `message` events to event",
1542 " * handlers that are not necessarily instances of [BodyElement].",
1543 " *",
1544 " * See [EventStreamProvider] for usage information.",
1545 " */"
1546 ],
1547 "offlineEvent": [
1548 "/**",
1549 " * Static factory designed to expose `offline` events to event",
1550 " * handlers that are not necessarily instances of [BodyElement].",
1551 " *",
1552 " * See [EventStreamProvider] for usage information.",
1553 " */"
1554 ],
1555 "onblur": [
1556 "/// Stream of `blur` events handled by this [BodyElement]."
1557 ],
1558 "onerror": [
1559 "/// Stream of `error` events handled by this [BodyElement]."
1560 ],
1561 "onfocus": [
1562 "/// Stream of `focus` events handled by this [BodyElement]."
1563 ],
1564 "onhashchange": [
1565 "/// Stream of `hashchange` events handled by this [BodyElement]."
1566 ],
1567 "onlineEvent": [
1568 "/**",
1569 " * Static factory designed to expose `online` events to event",
1570 " * handlers that are not necessarily instances of [BodyElement].",
1571 " *",
1572 " * See [EventStreamProvider] for usage information.",
1573 " */"
1574 ],
1575 "onload": [
1576 "/// Stream of `load` events handled by this [BodyElement]."
1577 ],
1578 "onmessage": [
1579 "/// Stream of `message` events handled by this [BodyElement]."
1580 ],
1581 "onoffline": [
1582 "/// Stream of `offline` events handled by this [BodyElement]."
1583 ],
1584 "ononline": [
1585 "/// Stream of `online` events handled by this [BodyElement]."
1586 ],
1587 "onpopstate": [
1588 "/// Stream of `popstate` events handled by this [BodyElement]."
1589 ],
1590 "onresize": [
1591 "/// Stream of `resize` events handled by this [BodyElement]."
1592 ],
1593 "onstorage": [
1594 "/// Stream of `storage` events handled by this [BodyElement]."
1595 ],
1596 "onunload": [
1597 "/// Stream of `unload` events handled by this [BodyElement]."
1598 ],
1599 "popstateEvent": [
1600 "/**",
1601 " * Static factory designed to expose `popstate` events to event",
1602 " * handlers that are not necessarily instances of [BodyElement].",
1603 " *",
1604 " * See [EventStreamProvider] for usage information.",
1605 " */"
1606 ],
1607 "resizeEvent": [
1608 "/**",
1609 " * Static factory designed to expose `resize` events to event",
1610 " * handlers that are not necessarily instances of [BodyElement].",
1611 " *",
1612 " * See [EventStreamProvider] for usage information.",
1613 " */"
1614 ],
1615 "storageEvent": [
1616 "/**",
1617 " * Static factory designed to expose `storage` events to event",
1618 " * handlers that are not necessarily instances of [BodyElement].",
1619 " *",
1620 " * See [EventStreamProvider] for usage information.",
1621 " */"
1622 ],
1623 "unloadEvent": [
1624 "/**",
1625 " * Static factory designed to expose `unload` events to event",
1626 " * handlers that are not necessarily instances of [BodyElement].",
1627 " *",
1628 " * See [EventStreamProvider] for usage information.",
1629 " */"
1630 ]
1631 }
1632 },
192 "HTMLCanvasElement": { 1633 "HTMLCanvasElement": {
193 "members": { 1634 "members": {
194 "height": [ 1635 "height": [
195 "/// The height of this canvas element in CSS pixels." 1636 "/// The height of this canvas element in CSS pixels."
196 ], 1637 ],
1638 "onwebglcontextlost": [
1639 "/// Stream of `webglcontextlost` events handled by this [CanvasElemen t]."
1640 ],
1641 "onwebglcontextrestored": [
1642 "/// Stream of `webglcontextrestored` events handled by this [CanvasEl ement]."
1643 ],
1644 "webglcontextlostEvent": [
1645 "/**",
1646 " * Static factory designed to expose `webglcontextlost` events to e vent",
1647 " * handlers that are not necessarily instances of [CanvasElement]." ,
1648 " *",
1649 " * See [EventStreamProvider] for usage information.",
1650 " */"
1651 ],
1652 "webglcontextrestoredEvent": [
1653 "/**",
1654 " * Static factory designed to expose `webglcontextrestored` events to event",
1655 " * handlers that are not necessarily instances of [CanvasElement]." ,
1656 " *",
1657 " * See [EventStreamProvider] for usage information.",
1658 " */"
1659 ],
197 "width": [ 1660 "width": [
198 "/// The width of this canvas element in CSS pixels." 1661 "/// The width of this canvas element in CSS pixels."
199 ] 1662 ]
200 } 1663 }
201 }, 1664 },
202 "HTMLDivElement": { 1665 "HTMLDivElement": {
203 "comment": [ 1666 "comment": [
204 "/**", 1667 "/**",
205 " * A generic container for content on an HTML page;", 1668 " * A generic container for content on an HTML page;",
206 " * corresponds to the &lt;div&gt; tag.", 1669 " * corresponds to the &lt;div&gt; tag.",
(...skipping 11 matching lines...) Expand all
218 " * document.body.elements.add(elem);", 1681 " * document.body.elements.add(elem);",
219 " *", 1682 " *",
220 " * See also:", 1683 " * See also:",
221 " *", 1684 " *",
222 " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) fr om W3C.", 1685 " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) fr om W3C.",
223 " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block -boxes) from W3C.", 1686 " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block -boxes) from W3C.",
224 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.", 1687 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.",
225 " */" 1688 " */"
226 ] 1689 ]
227 }, 1690 },
1691 "HTMLFormElement": {
1692 "members": {
1693 "autocompleteerrorEvent": [
1694 "/**",
1695 " * Static factory designed to expose `autocompleteerror` events to event",
1696 " * handlers that are not necessarily instances of [FormElement].",
1697 " *",
1698 " * See [EventStreamProvider] for usage information.",
1699 " */"
1700 ],
1701 "autocompleteEvent": [
1702 "/**",
1703 " * Static factory designed to expose `autocomplete` events to event ",
1704 " * handlers that are not necessarily instances of [FormElement].",
1705 " *",
1706 " * See [EventStreamProvider] for usage information.",
1707 " */"
1708 ],
1709 "onautocomplete": [
1710 "/// Stream of `autocomplete` events handled by this [FormElement]."
1711 ],
1712 "onautocompleteerror": [
1713 "/// Stream of `autocompleteerror` events handled by this [FormElement ]."
1714 ]
1715 }
1716 },
228 "HTMLHRElement": { 1717 "HTMLHRElement": {
229 "comment": [ 1718 "comment": [
230 "/**", 1719 "/**",
231 " * An `<hr>` tag.", 1720 " * An `<hr>` tag.",
232 " */" 1721 " */"
233 ] 1722 ]
234 }, 1723 },
1724 "HTMLInputElement": {
1725 "members": {
1726 "onwebkitSpeechChange": [
1727 "/// Stream of `speechchange` events handled by this [InputElement]."
1728 ],
1729 "webkitSpeechChangeEvent": [
1730 "/**",
1731 " * Static factory designed to expose `speechchange` events to event ",
1732 " * handlers that are not necessarily instances of [InputElement].",
1733 " *",
1734 " * See [EventStreamProvider] for usage information.",
1735 " */"
1736 ]
1737 }
1738 },
1739 "HTMLMediaElement": {
1740 "members": {
1741 "canplayEvent": [
1742 "/**",
1743 " * Static factory designed to expose `canplay` events to event",
1744 " * handlers that are not necessarily instances of [MediaElement].",
1745 " *",
1746 " * See [EventStreamProvider] for usage information.",
1747 " */"
1748 ],
1749 "canplaythroughEvent": [
1750 "/**",
1751 " * Static factory designed to expose `canplaythrough` events to eve nt",
1752 " * handlers that are not necessarily instances of [MediaElement].",
1753 " *",
1754 " * See [EventStreamProvider] for usage information.",
1755 " */"
1756 ],
1757 "durationchangeEvent": [
1758 "/**",
1759 " * Static factory designed to expose `durationchange` events to eve nt",
1760 " * handlers that are not necessarily instances of [MediaElement].",
1761 " *",
1762 " * See [EventStreamProvider] for usage information.",
1763 " */"
1764 ],
1765 "emptiedEvent": [
1766 "/**",
1767 " * Static factory designed to expose `emptied` events to event",
1768 " * handlers that are not necessarily instances of [MediaElement].",
1769 " *",
1770 " * See [EventStreamProvider] for usage information.",
1771 " */"
1772 ],
1773 "endedEvent": [
1774 "/**",
1775 " * Static factory designed to expose `ended` events to event",
1776 " * handlers that are not necessarily instances of [MediaElement].",
1777 " *",
1778 " * See [EventStreamProvider] for usage information.",
1779 " */"
1780 ],
1781 "loadeddataEvent": [
1782 "/**",
1783 " * Static factory designed to expose `loadeddata` events to event",
1784 " * handlers that are not necessarily instances of [MediaElement].",
1785 " *",
1786 " * See [EventStreamProvider] for usage information.",
1787 " */"
1788 ],
1789 "loadedmetadataEvent": [
1790 "/**",
1791 " * Static factory designed to expose `loadedmetadata` events to eve nt",
1792 " * handlers that are not necessarily instances of [MediaElement].",
1793 " *",
1794 " * See [EventStreamProvider] for usage information.",
1795 " */"
1796 ],
1797 "loadstartEvent": [
1798 "/**",
1799 " * Static factory designed to expose `loadstart` events to event",
1800 " * handlers that are not necessarily instances of [MediaElement].",
1801 " *",
1802 " * See [EventStreamProvider] for usage information.",
1803 " */"
1804 ],
1805 "oncanplay": [
1806 "/// Stream of `canplay` events handled by this [MediaElement]."
1807 ],
1808 "oncanplaythrough": [
1809 "/// Stream of `canplaythrough` events handled by this [MediaElement]. "
1810 ],
1811 "ondurationchange": [
1812 "/// Stream of `durationchange` events handled by this [MediaElement]. "
1813 ],
1814 "onemptied": [
1815 "/// Stream of `emptied` events handled by this [MediaElement]."
1816 ],
1817 "onended": [
1818 "/// Stream of `ended` events handled by this [MediaElement]."
1819 ],
1820 "onloadeddata": [
1821 "/// Stream of `loadeddata` events handled by this [MediaElement]."
1822 ],
1823 "onloadedmetadata": [
1824 "/// Stream of `loadedmetadata` events handled by this [MediaElement]. "
1825 ],
1826 "onloadstart": [
1827 "/// Stream of `loadstart` events handled by this [MediaElement]."
1828 ],
1829 "onpause": [
1830 "/// Stream of `pause` events handled by this [MediaElement]."
1831 ],
1832 "onplay": [
1833 "/// Stream of `play` events handled by this [MediaElement]."
1834 ],
1835 "onplaying": [
1836 "/// Stream of `playing` events handled by this [MediaElement]."
1837 ],
1838 "onprogress": [
1839 "/// Stream of `progress` events handled by this [MediaElement]."
1840 ],
1841 "onratechange": [
1842 "/// Stream of `ratechange` events handled by this [MediaElement]."
1843 ],
1844 "onseeked": [
1845 "/// Stream of `seeked` events handled by this [MediaElement]."
1846 ],
1847 "onseeking": [
1848 "/// Stream of `seeking` events handled by this [MediaElement]."
1849 ],
1850 "onshow": [
1851 "/// Stream of `show` events handled by this [MediaElement]."
1852 ],
1853 "onstalled": [
1854 "/// Stream of `stalled` events handled by this [MediaElement]."
1855 ],
1856 "onsuspend": [
1857 "/// Stream of `suspend` events handled by this [MediaElement]."
1858 ],
1859 "ontimeupdate": [
1860 "/// Stream of `timeupdate` events handled by this [MediaElement]."
1861 ],
1862 "onvolumechange": [
1863 "/// Stream of `volumechange` events handled by this [MediaElement]."
1864 ],
1865 "onwaiting": [
1866 "/// Stream of `waiting` events handled by this [MediaElement]."
1867 ],
1868 "onwebkitkeyadded": [
1869 "/// Stream of `keyadded` events handled by this [MediaElement]."
1870 ],
1871 "onwebkitkeyerror": [
1872 "/// Stream of `keyerror` events handled by this [MediaElement]."
1873 ],
1874 "onwebkitkeymessage": [
1875 "/// Stream of `keymessage` events handled by this [MediaElement]."
1876 ],
1877 "onwebkitneedkey": [
1878 "/// Stream of `needkey` events handled by this [MediaElement]."
1879 ],
1880 "pauseEvent": [
1881 "/**",
1882 " * Static factory designed to expose `pause` events to event",
1883 " * handlers that are not necessarily instances of [MediaElement].",
1884 " *",
1885 " * See [EventStreamProvider] for usage information.",
1886 " */"
1887 ],
1888 "playEvent": [
1889 "/**",
1890 " * Static factory designed to expose `play` events to event",
1891 " * handlers that are not necessarily instances of [MediaElement].",
1892 " *",
1893 " * See [EventStreamProvider] for usage information.",
1894 " */"
1895 ],
1896 "playingEvent": [
1897 "/**",
1898 " * Static factory designed to expose `playing` events to event",
1899 " * handlers that are not necessarily instances of [MediaElement].",
1900 " *",
1901 " * See [EventStreamProvider] for usage information.",
1902 " */"
1903 ],
1904 "progressEvent": [
1905 "/**",
1906 " * Static factory designed to expose `progress` events to event",
1907 " * handlers that are not necessarily instances of [MediaElement].",
1908 " *",
1909 " * See [EventStreamProvider] for usage information.",
1910 " */"
1911 ],
1912 "ratechangeEvent": [
1913 "/**",
1914 " * Static factory designed to expose `ratechange` events to event",
1915 " * handlers that are not necessarily instances of [MediaElement].",
1916 " *",
1917 " * See [EventStreamProvider] for usage information.",
1918 " */"
1919 ],
1920 "seekedEvent": [
1921 "/**",
1922 " * Static factory designed to expose `seeked` events to event",
1923 " * handlers that are not necessarily instances of [MediaElement].",
1924 " *",
1925 " * See [EventStreamProvider] for usage information.",
1926 " */"
1927 ],
1928 "seekingEvent": [
1929 "/**",
1930 " * Static factory designed to expose `seeking` events to event",
1931 " * handlers that are not necessarily instances of [MediaElement].",
1932 " *",
1933 " * See [EventStreamProvider] for usage information.",
1934 " */"
1935 ],
1936 "showEvent": [
1937 "/**",
1938 " * Static factory designed to expose `show` events to event",
1939 " * handlers that are not necessarily instances of [MediaElement].",
1940 " *",
1941 " * See [EventStreamProvider] for usage information.",
1942 " */"
1943 ],
1944 "stalledEvent": [
1945 "/**",
1946 " * Static factory designed to expose `stalled` events to event",
1947 " * handlers that are not necessarily instances of [MediaElement].",
1948 " *",
1949 " * See [EventStreamProvider] for usage information.",
1950 " */"
1951 ],
1952 "suspendEvent": [
1953 "/**",
1954 " * Static factory designed to expose `suspend` events to event",
1955 " * handlers that are not necessarily instances of [MediaElement].",
1956 " *",
1957 " * See [EventStreamProvider] for usage information.",
1958 " */"
1959 ],
1960 "timeupdateEvent": [
1961 "/**",
1962 " * Static factory designed to expose `timeupdate` events to event",
1963 " * handlers that are not necessarily instances of [MediaElement].",
1964 " *",
1965 " * See [EventStreamProvider] for usage information.",
1966 " */"
1967 ],
1968 "volumechangeEvent": [
1969 "/**",
1970 " * Static factory designed to expose `volumechange` events to event ",
1971 " * handlers that are not necessarily instances of [MediaElement].",
1972 " *",
1973 " * See [EventStreamProvider] for usage information.",
1974 " */"
1975 ],
1976 "waitingEvent": [
1977 "/**",
1978 " * Static factory designed to expose `waiting` events to event",
1979 " * handlers that are not necessarily instances of [MediaElement].",
1980 " *",
1981 " * See [EventStreamProvider] for usage information.",
1982 " */"
1983 ],
1984 "webkitkeyaddedEvent": [
1985 "/**",
1986 " * Static factory designed to expose `keyadded` events to event",
1987 " * handlers that are not necessarily instances of [MediaElement].",
1988 " *",
1989 " * See [EventStreamProvider] for usage information.",
1990 " */"
1991 ],
1992 "webkitkeyerrorEvent": [
1993 "/**",
1994 " * Static factory designed to expose `keyerror` events to event",
1995 " * handlers that are not necessarily instances of [MediaElement].",
1996 " *",
1997 " * See [EventStreamProvider] for usage information.",
1998 " */"
1999 ],
2000 "webkitkeymessageEvent": [
2001 "/**",
2002 " * Static factory designed to expose `keymessage` events to event",
2003 " * handlers that are not necessarily instances of [MediaElement].",
2004 " *",
2005 " * See [EventStreamProvider] for usage information.",
2006 " */"
2007 ],
2008 "webkitneedkeyEvent": [
2009 "/**",
2010 " * Static factory designed to expose `needkey` events to event",
2011 " * handlers that are not necessarily instances of [MediaElement].",
2012 " *",
2013 " * See [EventStreamProvider] for usage information.",
2014 " */"
2015 ]
2016 }
2017 },
235 "HTMLMenuElement": { 2018 "HTMLMenuElement": {
236 "comment": [ 2019 "comment": [
237 "/**", 2020 "/**",
238 " * An HTML <menu> element.", 2021 " * An HTML <menu> element.",
239 " *", 2022 " *",
240 " * A <menu> element represents an unordered list of menu commands.", 2023 " * A <menu> element represents an unordered list of menu commands.",
241 " *", 2024 " *",
242 " * See also:", 2025 " * See also:",
243 " *", 2026 " *",
244 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.", 2027 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.",
245 " * * [Menu Element](http://www.w3.org/TR/html5/the-menu-element.html#t he-menu-element) from the W3C.", 2028 " * * [Menu Element](http://www.w3.org/TR/html5/the-menu-element.html#t he-menu-element) from the W3C.",
246 " */" 2029 " */"
247 ] 2030 ]
248 }, 2031 },
2032 "MediaKeySession": {
2033 "members": {
2034 "onwebkitkeyadded": [
2035 "/// Stream of `keyadded` events handled by this [MediaKeySession]."
2036 ],
2037 "onwebkitkeyerror": [
2038 "/// Stream of `keyerror` events handled by this [MediaKeySession]."
2039 ],
2040 "onwebkitkeymessage": [
2041 "/// Stream of `keymessage` events handled by this [MediaKeySession]."
2042 ],
2043 "webkitkeyaddedEvent": [
2044 "/**",
2045 " * Static factory designed to expose `keyadded` events to event",
2046 " * handlers that are not necessarily instances of [MediaKeySession] .",
2047 " *",
2048 " * See [EventStreamProvider] for usage information.",
2049 " */"
2050 ],
2051 "webkitkeyerrorEvent": [
2052 "/**",
2053 " * Static factory designed to expose `keyerror` events to event",
2054 " * handlers that are not necessarily instances of [MediaKeySession] .",
2055 " *",
2056 " * See [EventStreamProvider] for usage information.",
2057 " */"
2058 ],
2059 "webkitkeymessageEvent": [
2060 "/**",
2061 " * Static factory designed to expose `keymessage` events to event",
2062 " * handlers that are not necessarily instances of [MediaKeySession] .",
2063 " *",
2064 " * See [EventStreamProvider] for usage information.",
2065 " */"
2066 ]
2067 }
2068 },
2069 "MediaStream": {
2070 "members": {
2071 "addtrackEvent": [
2072 "/**",
2073 " * Static factory designed to expose `addtrack` events to event",
2074 " * handlers that are not necessarily instances of [MediaStream].",
2075 " *",
2076 " * See [EventStreamProvider] for usage information.",
2077 " */"
2078 ],
2079 "endedEvent": [
2080 "/**",
2081 " * Static factory designed to expose `ended` events to event",
2082 " * handlers that are not necessarily instances of [MediaStream].",
2083 " *",
2084 " * See [EventStreamProvider] for usage information.",
2085 " */"
2086 ],
2087 "onaddtrack": [
2088 "/// Stream of `addtrack` events handled by this [MediaStream]."
2089 ],
2090 "onended": [
2091 "/// Stream of `ended` events handled by this [MediaStream]."
2092 ],
2093 "onremovetrack": [
2094 "/// Stream of `removetrack` events handled by this [MediaStream]."
2095 ],
2096 "removetrackEvent": [
2097 "/**",
2098 " * Static factory designed to expose `removetrack` events to event" ,
2099 " * handlers that are not necessarily instances of [MediaStream].",
2100 " *",
2101 " * See [EventStreamProvider] for usage information.",
2102 " */"
2103 ]
2104 }
2105 },
2106 "MediaStreamTrack": {
2107 "members": {
2108 "endedEvent": [
2109 "/**",
2110 " * Static factory designed to expose `ended` events to event",
2111 " * handlers that are not necessarily instances of [MediaStreamTrack ].",
2112 " *",
2113 " * See [EventStreamProvider] for usage information.",
2114 " */"
2115 ],
2116 "muteEvent": [
2117 "/**",
2118 " * Static factory designed to expose `mute` events to event",
2119 " * handlers that are not necessarily instances of [MediaStreamTrack ].",
2120 " *",
2121 " * See [EventStreamProvider] for usage information.",
2122 " */"
2123 ],
2124 "onended": [
2125 "/// Stream of `ended` events handled by this [MediaStreamTrack]."
2126 ],
2127 "onmute": [
2128 "/// Stream of `mute` events handled by this [MediaStreamTrack]."
2129 ],
2130 "onunmute": [
2131 "/// Stream of `unmute` events handled by this [MediaStreamTrack]."
2132 ],
2133 "unmuteEvent": [
2134 "/**",
2135 " * Static factory designed to expose `unmute` events to event",
2136 " * handlers that are not necessarily instances of [MediaStreamTrack ].",
2137 " *",
2138 " * See [EventStreamProvider] for usage information.",
2139 " */"
2140 ]
2141 }
2142 },
2143 "MessagePort": {
2144 "members": {
2145 "messageEvent": [
2146 "/**",
2147 " * Static factory designed to expose `message` events to event",
2148 " * handlers that are not necessarily instances of [MessagePort].",
2149 " *",
2150 " * See [EventStreamProvider] for usage information.",
2151 " */"
2152 ],
2153 "onmessage": [
2154 "/// Stream of `message` events handled by this [MessagePort]."
2155 ]
2156 }
2157 },
2158 "MIDIAccess": {
2159 "members": {
2160 "connectEvent": [
2161 "/**",
2162 " * Static factory designed to expose `connect` events to event",
2163 " * handlers that are not necessarily instances of [MidiAccess].",
2164 " *",
2165 " * See [EventStreamProvider] for usage information.",
2166 " */"
2167 ],
2168 "disconnectEvent": [
2169 "/**",
2170 " * Static factory designed to expose `disconnect` events to event",
2171 " * handlers that are not necessarily instances of [MidiAccess].",
2172 " *",
2173 " * See [EventStreamProvider] for usage information.",
2174 " */"
2175 ],
2176 "onconnect": [
2177 "/// Stream of `connect` events handled by this [MidiAccess]."
2178 ],
2179 "ondisconnect": [
2180 "/// Stream of `disconnect` events handled by this [MidiAccess]."
2181 ]
2182 }
2183 },
2184 "MIDIInput": {
2185 "members": {
2186 "midimessageEvent": [
2187 "/**",
2188 " * Static factory designed to expose `midimessage` events to event" ,
2189 " * handlers that are not necessarily instances of [MidiInput].",
2190 " *",
2191 " * See [EventStreamProvider] for usage information.",
2192 " */"
2193 ],
2194 "onmidimessage": [
2195 "/// Stream of `midimessage` events handled by this [MidiInput]."
2196 ]
2197 }
2198 },
2199 "MIDIPort": {
2200 "members": {
2201 "disconnectEvent": [
2202 "/**",
2203 " * Static factory designed to expose `disconnect` events to event",
2204 " * handlers that are not necessarily instances of [MidiPort].",
2205 " *",
2206 " * See [EventStreamProvider] for usage information.",
2207 " */"
2208 ],
2209 "ondisconnect": [
2210 "/// Stream of `disconnect` events handled by this [MidiPort]."
2211 ]
2212 }
2213 },
249 "Node": { 2214 "Node": {
250 "members": { 2215 "members": {
251 "appendChild": [ 2216 "appendChild": [
252 "/**", 2217 "/**",
253 " * Adds a node to the end of the child [nodes] list of this node.", 2218 " * Adds a node to the end of the child [nodes] list of this node.",
254 " *", 2219 " *",
255 " * If the node already exists in this document, it will be removed from its", 2220 " * If the node already exists in this document, it will be removed from its",
256 " * current parent node, then added to this node.", 2221 " * current parent node, then added to this node.",
257 " *", 2222 " *",
258 " * This method is more efficient than `nodes.add`, and is the prefe rred", 2223 " * This method is more efficient than `nodes.add`, and is the prefe rred",
259 " * way of appending a child node.", 2224 " * way of appending a child node.",
260 " */" 2225 " */"
261 ] 2226 ]
262 } 2227 }
263 }, 2228 },
2229 "Notification": {
2230 "members": {
2231 "clickEvent": [
2232 "/**",
2233 " * Static factory designed to expose `click` events to event",
2234 " * handlers that are not necessarily instances of [Notification].",
2235 " *",
2236 " * See [EventStreamProvider] for usage information.",
2237 " */"
2238 ],
2239 "closeEvent": [
2240 "/**",
2241 " * Static factory designed to expose `close` events to event",
2242 " * handlers that are not necessarily instances of [Notification].",
2243 " *",
2244 " * See [EventStreamProvider] for usage information.",
2245 " */"
2246 ],
2247 "displayEvent": [
2248 "/**",
2249 " * Static factory designed to expose `display` events to event",
2250 " * handlers that are not necessarily instances of [Notification].",
2251 " *",
2252 " * See [EventStreamProvider] for usage information.",
2253 " */"
2254 ],
2255 "errorEvent": [
2256 "/**",
2257 " * Static factory designed to expose `error` events to event",
2258 " * handlers that are not necessarily instances of [Notification].",
2259 " *",
2260 " * See [EventStreamProvider] for usage information.",
2261 " */"
2262 ],
2263 "onclick": [
2264 "/// Stream of `click` events handled by this [Notification]."
2265 ],
2266 "onclose": [
2267 "/// Stream of `close` events handled by this [Notification]."
2268 ],
2269 "ondisplay": [
2270 "/// Stream of `display` events handled by this [Notification]."
2271 ],
2272 "onerror": [
2273 "/// Stream of `error` events handled by this [Notification]."
2274 ],
2275 "onshow": [
2276 "/// Stream of `show` events handled by this [Notification]."
2277 ],
2278 "showEvent": [
2279 "/**",
2280 " * Static factory designed to expose `show` events to event",
2281 " * handlers that are not necessarily instances of [Notification].",
2282 " *",
2283 " * See [EventStreamProvider] for usage information.",
2284 " */"
2285 ]
2286 }
2287 },
2288 "Performance": {
2289 "members": {
2290 "onwebkitresourcetimingbufferfull": [
2291 "/// Stream of `resourcetimingbufferfull` events handled by this [Perf ormance]."
2292 ],
2293 "webkitresourcetimingbufferfullEvent": [
2294 "/**",
2295 " * Static factory designed to expose `resourcetimingbufferfull` eve nts to event",
2296 " * handlers that are not necessarily instances of [Performance].",
2297 " *",
2298 " * See [EventStreamProvider] for usage information.",
2299 " */"
2300 ]
2301 }
2302 },
2303 "RTCDataChannel": {
2304 "members": {
2305 "closeEvent": [
2306 "/**",
2307 " * Static factory designed to expose `close` events to event",
2308 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2309 " *",
2310 " * See [EventStreamProvider] for usage information.",
2311 " */"
2312 ],
2313 "errorEvent": [
2314 "/**",
2315 " * Static factory designed to expose `error` events to event",
2316 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2317 " *",
2318 " * See [EventStreamProvider] for usage information.",
2319 " */"
2320 ],
2321 "messageEvent": [
2322 "/**",
2323 " * Static factory designed to expose `message` events to event",
2324 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2325 " *",
2326 " * See [EventStreamProvider] for usage information.",
2327 " */"
2328 ],
2329 "onclose": [
2330 "/// Stream of `close` events handled by this [RtcDataChannel]."
2331 ],
2332 "onerror": [
2333 "/// Stream of `error` events handled by this [RtcDataChannel]."
2334 ],
2335 "onmessage": [
2336 "/// Stream of `message` events handled by this [RtcDataChannel]."
2337 ],
2338 "onopen": [
2339 "/// Stream of `open` events handled by this [RtcDataChannel]."
2340 ],
2341 "openEvent": [
2342 "/**",
2343 " * Static factory designed to expose `open` events to event",
2344 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2345 " *",
2346 " * See [EventStreamProvider] for usage information.",
2347 " */"
2348 ]
2349 }
2350 },
2351 "RTCDTMFSender": {
2352 "members": {
2353 "ontonechange": [
2354 "/// Stream of `tonechange` events handled by this [RtcDtmfSender]."
2355 ],
2356 "tonechangeEvent": [
2357 "/**",
2358 " * Static factory designed to expose `tonechange` events to event",
2359 " * handlers that are not necessarily instances of [RtcDtmfSender]." ,
2360 " *",
2361 " * See [EventStreamProvider] for usage information.",
2362 " */"
2363 ]
2364 }
2365 },
2366 "RTCPeerConnection": {
2367 "members": {
2368 "addstreamEvent": [
2369 "/**",
2370 " * Static factory designed to expose `addstream` events to event",
2371 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2372 " *",
2373 " * See [EventStreamProvider] for usage information.",
2374 " */"
2375 ],
2376 "datachannelEvent": [
2377 "/**",
2378 " * Static factory designed to expose `datachannel` events to event" ,
2379 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2380 " *",
2381 " * See [EventStreamProvider] for usage information.",
2382 " */"
2383 ],
2384 "icecandidateEvent": [
2385 "/**",
2386 " * Static factory designed to expose `icecandidate` events to event ",
2387 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2388 " *",
2389 " * See [EventStreamProvider] for usage information.",
2390 " */"
2391 ],
2392 "iceconnectionstatechangeEvent": [
2393 "/**",
2394 " * Static factory designed to expose `iceconnectionstatechange` eve nts to event",
2395 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2396 " *",
2397 " * See [EventStreamProvider] for usage information.",
2398 " */"
2399 ],
2400 "negotiationneededEvent": [
2401 "/**",
2402 " * Static factory designed to expose `negotiationneeded` events to event",
2403 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2404 " *",
2405 " * See [EventStreamProvider] for usage information.",
2406 " */"
2407 ],
2408 "onaddstream": [
2409 "/// Stream of `addstream` events handled by this [RtcPeerConnection]. "
2410 ],
2411 "ondatachannel": [
2412 "/// Stream of `datachannel` events handled by this [RtcPeerConnection ]."
2413 ],
2414 "onicecandidate": [
2415 "/// Stream of `icecandidate` events handled by this [RtcPeerConnectio n]."
2416 ],
2417 "oniceconnectionstatechange": [
2418 "/// Stream of `iceconnectionstatechange` events handled by this [RtcP eerConnection]."
2419 ],
2420 "onnegotiationneeded": [
2421 "/// Stream of `negotiationneeded` events handled by this [RtcPeerConn ection]."
2422 ],
2423 "onremovestream": [
2424 "/// Stream of `removestream` events handled by this [RtcPeerConnectio n]."
2425 ],
2426 "onsignalingstatechange": [
2427 "/// Stream of `signalingstatechange` events handled by this [RtcPeerC onnection]."
2428 ],
2429 "removestreamEvent": [
2430 "/**",
2431 " * Static factory designed to expose `removestream` events to event ",
2432 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2433 " *",
2434 " * See [EventStreamProvider] for usage information.",
2435 " */"
2436 ],
2437 "signalingstatechangeEvent": [
2438 "/**",
2439 " * Static factory designed to expose `signalingstatechange` events to event",
2440 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2441 " *",
2442 " * See [EventStreamProvider] for usage information.",
2443 " */"
2444 ]
2445 }
2446 },
2447 "SharedWorkerGlobalScope": {
2448 "members": {
2449 "connectEvent": [
2450 "/**",
2451 " * Static factory designed to expose `connect` events to event",
2452 " * handlers that are not necessarily instances of [SharedWorkerGlob alScope].",
2453 " *",
2454 " * See [EventStreamProvider] for usage information.",
2455 " */"
2456 ],
2457 "onconnect": [
2458 "/// Stream of `connect` events handled by this [SharedWorkerGlobalSco pe]."
2459 ]
2460 }
2461 },
2462 "SpeechRecognition": {
2463 "members": {
2464 "audioendEvent": [
2465 "/**",
2466 " * Static factory designed to expose `audioend` events to event",
2467 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2468 " *",
2469 " * See [EventStreamProvider] for usage information.",
2470 " */"
2471 ],
2472 "audiostartEvent": [
2473 "/**",
2474 " * Static factory designed to expose `audiostart` events to event",
2475 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2476 " *",
2477 " * See [EventStreamProvider] for usage information.",
2478 " */"
2479 ],
2480 "endEvent": [
2481 "/**",
2482 " * Static factory designed to expose `end` events to event",
2483 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2484 " *",
2485 " * See [EventStreamProvider] for usage information.",
2486 " */"
2487 ],
2488 "errorEvent": [
2489 "/**",
2490 " * Static factory designed to expose `error` events to event",
2491 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2492 " *",
2493 " * See [EventStreamProvider] for usage information.",
2494 " */"
2495 ],
2496 "nomatchEvent": [
2497 "/**",
2498 " * Static factory designed to expose `nomatch` events to event",
2499 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2500 " *",
2501 " * See [EventStreamProvider] for usage information.",
2502 " */"
2503 ],
2504 "onaudioend": [
2505 "/// Stream of `audioend` events handled by this [SpeechRecognition]."
2506 ],
2507 "onaudiostart": [
2508 "/// Stream of `audiostart` events handled by this [SpeechRecognition] ."
2509 ],
2510 "onend": [
2511 "/// Stream of `end` events handled by this [SpeechRecognition]."
2512 ],
2513 "onerror": [
2514 "/// Stream of `error` events handled by this [SpeechRecognition]."
2515 ],
2516 "onnomatch": [
2517 "/// Stream of `nomatch` events handled by this [SpeechRecognition]."
2518 ],
2519 "onresult": [
2520 "/// Stream of `result` events handled by this [SpeechRecognition]."
2521 ],
2522 "onsoundend": [
2523 "/// Stream of `soundend` events handled by this [SpeechRecognition]."
2524 ],
2525 "onsoundstart": [
2526 "/// Stream of `soundstart` events handled by this [SpeechRecognition] ."
2527 ],
2528 "onspeechend": [
2529 "/// Stream of `speechend` events handled by this [SpeechRecognition]. "
2530 ],
2531 "onspeechstart": [
2532 "/// Stream of `speechstart` events handled by this [SpeechRecognition ]."
2533 ],
2534 "onstart": [
2535 "/// Stream of `start` events handled by this [SpeechRecognition]."
2536 ],
2537 "resultEvent": [
2538 "/**",
2539 " * Static factory designed to expose `result` events to event",
2540 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2541 " *",
2542 " * See [EventStreamProvider] for usage information.",
2543 " */"
2544 ],
2545 "soundendEvent": [
2546 "/**",
2547 " * Static factory designed to expose `soundend` events to event",
2548 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2549 " *",
2550 " * See [EventStreamProvider] for usage information.",
2551 " */"
2552 ],
2553 "soundstartEvent": [
2554 "/**",
2555 " * Static factory designed to expose `soundstart` events to event",
2556 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2557 " *",
2558 " * See [EventStreamProvider] for usage information.",
2559 " */"
2560 ],
2561 "speechendEvent": [
2562 "/**",
2563 " * Static factory designed to expose `speechend` events to event",
2564 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2565 " *",
2566 " * See [EventStreamProvider] for usage information.",
2567 " */"
2568 ],
2569 "speechstartEvent": [
2570 "/**",
2571 " * Static factory designed to expose `speechstart` events to event" ,
2572 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2573 " *",
2574 " * See [EventStreamProvider] for usage information.",
2575 " */"
2576 ],
2577 "startEvent": [
2578 "/**",
2579 " * Static factory designed to expose `start` events to event",
2580 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2581 " *",
2582 " * See [EventStreamProvider] for usage information.",
2583 " */"
2584 ]
2585 }
2586 },
2587 "SpeechSynthesisUtterance": {
2588 "members": {
2589 "boundaryEvent": [
2590 "/**",
2591 " * Static factory designed to expose `boundary` events to event",
2592 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2593 " *",
2594 " * See [EventStreamProvider] for usage information.",
2595 " */"
2596 ],
2597 "endEvent": [
2598 "/**",
2599 " * Static factory designed to expose `end` events to event",
2600 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2601 " *",
2602 " * See [EventStreamProvider] for usage information.",
2603 " */"
2604 ],
2605 "errorEvent": [
2606 "/**",
2607 " * Static factory designed to expose `error` events to event",
2608 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2609 " *",
2610 " * See [EventStreamProvider] for usage information.",
2611 " */"
2612 ],
2613 "markEvent": [
2614 "/**",
2615 " * Static factory designed to expose `mark` events to event",
2616 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2617 " *",
2618 " * See [EventStreamProvider] for usage information.",
2619 " */"
2620 ],
2621 "onboundary": [
2622 "/// Stream of `boundary` events handled by this [SpeechSynthesisUtter ance]."
2623 ],
2624 "onend": [
2625 "/// Stream of `end` events handled by this [SpeechSynthesisUtterance] ."
2626 ],
2627 "onerror": [
2628 "/// Stream of `error` events handled by this [SpeechSynthesisUtteranc e]."
2629 ],
2630 "onmark": [
2631 "/// Stream of `mark` events handled by this [SpeechSynthesisUtterance ]."
2632 ],
2633 "onpause": [
2634 "/// Stream of `pause` events handled by this [SpeechSynthesisUtteranc e]."
2635 ],
2636 "onresume": [
2637 "/// Stream of `resume` events handled by this [SpeechSynthesisUtteran ce]."
2638 ],
2639 "onstart": [
2640 "/// Stream of `start` events handled by this [SpeechSynthesisUtteranc e]."
2641 ],
2642 "pauseEvent": [
2643 "/**",
2644 " * Static factory designed to expose `pause` events to event",
2645 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2646 " *",
2647 " * See [EventStreamProvider] for usage information.",
2648 " */"
2649 ],
2650 "resumeEvent": [
2651 "/**",
2652 " * Static factory designed to expose `resume` events to event",
2653 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2654 " *",
2655 " * See [EventStreamProvider] for usage information.",
2656 " */"
2657 ],
2658 "startEvent": [
2659 "/**",
2660 " * Static factory designed to expose `start` events to event",
2661 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2662 " *",
2663 " * See [EventStreamProvider] for usage information.",
2664 " */"
2665 ]
2666 }
2667 },
2668 "TextTrack": {
2669 "members": {
2670 "cuechangeEvent": [
2671 "/**",
2672 " * Static factory designed to expose `cuechange` events to event",
2673 " * handlers that are not necessarily instances of [TextTrack].",
2674 " *",
2675 " * See [EventStreamProvider] for usage information.",
2676 " */"
2677 ],
2678 "oncuechange": [
2679 "/// Stream of `cuechange` events handled by this [TextTrack]."
2680 ]
2681 }
2682 },
2683 "TextTrackCue": {
2684 "members": {
2685 "enterEvent": [
2686 "/**",
2687 " * Static factory designed to expose `enter` events to event",
2688 " * handlers that are not necessarily instances of [TextTrackCue].",
2689 " *",
2690 " * See [EventStreamProvider] for usage information.",
2691 " */"
2692 ],
2693 "exitEvent": [
2694 "/**",
2695 " * Static factory designed to expose `exit` events to event",
2696 " * handlers that are not necessarily instances of [TextTrackCue].",
2697 " *",
2698 " * See [EventStreamProvider] for usage information.",
2699 " */"
2700 ],
2701 "onenter": [
2702 "/// Stream of `enter` events handled by this [TextTrackCue]."
2703 ],
2704 "onexit": [
2705 "/// Stream of `exit` events handled by this [TextTrackCue]."
2706 ]
2707 }
2708 },
2709 "TextTrackList": {
2710 "members": {
2711 "addtrackEvent": [
2712 "/**",
2713 " * Static factory designed to expose `addtrack` events to event",
2714 " * handlers that are not necessarily instances of [TextTrackList]." ,
2715 " *",
2716 " * See [EventStreamProvider] for usage information.",
2717 " */"
2718 ],
2719 "onaddtrack": [
2720 "/// Stream of `addtrack` events handled by this [TextTrackList]."
2721 ]
2722 }
2723 },
264 "WebSocket": { 2724 "WebSocket": {
265 "comment": [ 2725 "comment": [
266 "/**", 2726 "/**",
267 " * Use the WebSocket interface to connect to a WebSocket,", 2727 " * Use the WebSocket interface to connect to a WebSocket,",
268 " * and to send and receive data on that WebSocket.", 2728 " * and to send and receive data on that WebSocket.",
269 " *", 2729 " *",
270 " * To use a WebSocket in your web app, first create a WebSocket object, ", 2730 " * To use a WebSocket in your web app, first create a WebSocket object, ",
271 " * passing the WebSocket URL as an argument to the constructor.", 2731 " * passing the WebSocket URL as an argument to the constructor.",
272 " *", 2732 " *",
273 " * var webSocket = new WebSocket('ws://127.0.0.1:1337/ws');", 2733 " * var webSocket = new WebSocket('ws://127.0.0.1:1337/ws');",
(...skipping 18 matching lines...) Expand all
292 " * as specified by [WebSocketEvents].", 2752 " * as specified by [WebSocketEvents].",
293 " *", 2753 " *",
294 " * For more information, see the", 2754 " * For more information, see the",
295 " * [WebSockets](http://www.dartlang.org/docs/library-tour/#html-websock ets)", 2755 " * [WebSockets](http://www.dartlang.org/docs/library-tour/#html-websock ets)",
296 " * section of the library tour and", 2756 " * section of the library tour and",
297 " * [Introducing WebSockets](http://www.html5rocks.com/en/tutorials/webs ockets/basics/),", 2757 " * [Introducing WebSockets](http://www.html5rocks.com/en/tutorials/webs ockets/basics/),",
298 " * an HTML5Rocks.com tutorial.", 2758 " * an HTML5Rocks.com tutorial.",
299 " */" 2759 " */"
300 ], 2760 ],
301 "members": { 2761 "members": {
2762 "closeEvent": [
2763 "/**",
2764 " * Static factory designed to expose `close` events to event",
2765 " * handlers that are not necessarily instances of [WebSocket].",
2766 " *",
2767 " * See [EventStreamProvider] for usage information.",
2768 " */"
2769 ],
2770 "errorEvent": [
2771 "/**",
2772 " * Static factory designed to expose `error` events to event",
2773 " * handlers that are not necessarily instances of [WebSocket].",
2774 " *",
2775 " * See [EventStreamProvider] for usage information.",
2776 " */"
2777 ],
2778 "messageEvent": [
2779 "/**",
2780 " * Static factory designed to expose `message` events to event",
2781 " * handlers that are not necessarily instances of [WebSocket].",
2782 " *",
2783 " * See [EventStreamProvider] for usage information.",
2784 " */"
2785 ],
2786 "onclose": [
2787 "/// Stream of `close` events handled by this [WebSocket]."
2788 ],
2789 "onerror": [
2790 "/// Stream of `error` events handled by this [WebSocket]."
2791 ],
2792 "onmessage": [
2793 "/// Stream of `message` events handled by this [WebSocket]."
2794 ],
2795 "onopen": [
2796 "/// Stream of `open` events handled by this [WebSocket]."
2797 ],
2798 "openEvent": [
2799 "/**",
2800 " * Static factory designed to expose `open` events to event",
2801 " * handlers that are not necessarily instances of [WebSocket].",
2802 " *",
2803 " * See [EventStreamProvider] for usage information.",
2804 " */"
2805 ],
302 "send": [ 2806 "send": [
303 "/**", 2807 "/**",
304 " * Transmit data to the server over this connection.", 2808 " * Transmit data to the server over this connection.",
305 " *", 2809 " *",
306 " * This method accepts data of type [Blob], [ByteBuffer], [String], or", 2810 " * This method accepts data of type [Blob], [ByteBuffer], [String], or",
307 " * [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendS tring],", 2811 " * [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendS tring],",
308 " * or [sendTypedData], in constrast, only accept data of the specif ied type.", 2812 " * or [sendTypedData], in constrast, only accept data of the specif ied type.",
309 " */" 2813 " */"
310 ] 2814 ]
311 } 2815 }
(...skipping 20 matching lines...) Expand all
332 " * window.console.error('Jeepers!');", 2836 " * window.console.error('Jeepers!');",
333 " *", 2837 " *",
334 " * **Note:** This class represents the current window, whereas [WindowB ase] is", 2838 " * **Note:** This class represents the current window, whereas [WindowB ase] is",
335 " * a representation of any window, including other tabs, windows, and f rames.", 2839 " * a representation of any window, including other tabs, windows, and f rames.",
336 " *", 2840 " *",
337 " * ## Other resources", 2841 " * ## Other resources",
338 " *", 2842 " *",
339 " * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.", 2843 " * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.",
340 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.", 2844 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.",
341 " */" 2845 " */"
342 ] 2846 ],
2847 "members": {
2848 "devicemotionEvent": [
2849 "/**",
2850 " * Static factory designed to expose `devicemotion` events to event ",
2851 " * handlers that are not necessarily instances of [Window].",
2852 " *",
2853 " * See [EventStreamProvider] for usage information.",
2854 " */"
2855 ],
2856 "deviceorientationEvent": [
2857 "/**",
2858 " * Static factory designed to expose `deviceorientation` events to event",
2859 " * handlers that are not necessarily instances of [Window].",
2860 " *",
2861 " * See [EventStreamProvider] for usage information.",
2862 " */"
2863 ],
2864 "DOMContentLoadedEvent": [
2865 "/**",
2866 " * Static factory designed to expose `contentloaded` events to even t",
2867 " * handlers that are not necessarily instances of [Window].",
2868 " *",
2869 " * See [EventStreamProvider] for usage information.",
2870 " */"
2871 ],
2872 "hashchangeEvent": [
2873 "/**",
2874 " * Static factory designed to expose `hashchange` events to event",
2875 " * handlers that are not necessarily instances of [Window].",
2876 " *",
2877 " * See [EventStreamProvider] for usage information.",
2878 " */"
2879 ],
2880 "messageEvent": [
2881 "/**",
2882 " * Static factory designed to expose `message` events to event",
2883 " * handlers that are not necessarily instances of [Window].",
2884 " *",
2885 " * See [EventStreamProvider] for usage information.",
2886 " */"
2887 ],
2888 "offlineEvent": [
2889 "/**",
2890 " * Static factory designed to expose `offline` events to event",
2891 " * handlers that are not necessarily instances of [Window].",
2892 " *",
2893 " * See [EventStreamProvider] for usage information.",
2894 " */"
2895 ],
2896 "onabort": [
2897 "/// Stream of `abort` events handled by this [Window]."
2898 ],
2899 "onblur": [
2900 "/// Stream of `blur` events handled by this [Window]."
2901 ],
2902 "onchange": [
2903 "/// Stream of `change` events handled by this [Window]."
2904 ],
2905 "onclick": [
2906 "/// Stream of `click` events handled by this [Window]."
2907 ],
2908 "oncontextmenu": [
2909 "/// Stream of `contextmenu` events handled by this [Window]."
2910 ],
2911 "ondblclick": [
2912 "/// Stream of `doubleclick` events handled by this [Window]."
2913 ],
2914 "ondevicemotion": [
2915 "/// Stream of `devicemotion` events handled by this [Window]."
2916 ],
2917 "ondeviceorientation": [
2918 "/// Stream of `deviceorientation` events handled by this [Window]."
2919 ],
2920 "onDOMContentLoaded": [
2921 "/// Stream of `contentloaded` events handled by this [Window]."
2922 ],
2923 "ondrag": [
2924 "/// Stream of `drag` events handled by this [Window]."
2925 ],
2926 "ondragend": [
2927 "/// Stream of `dragend` events handled by this [Window]."
2928 ],
2929 "ondragenter": [
2930 "/// Stream of `dragenter` events handled by this [Window]."
2931 ],
2932 "ondragleave": [
2933 "/// Stream of `dragleave` events handled by this [Window]."
2934 ],
2935 "ondragover": [
2936 "/// Stream of `dragover` events handled by this [Window]."
2937 ],
2938 "ondragstart": [
2939 "/// Stream of `dragstart` events handled by this [Window]."
2940 ],
2941 "ondrop": [
2942 "/// Stream of `drop` events handled by this [Window]."
2943 ],
2944 "onerror": [
2945 "/// Stream of `error` events handled by this [Window]."
2946 ],
2947 "onfocus": [
2948 "/// Stream of `focus` events handled by this [Window]."
2949 ],
2950 "onhashchange": [
2951 "/// Stream of `hashchange` events handled by this [Window]."
2952 ],
2953 "oninput": [
2954 "/// Stream of `input` events handled by this [Window]."
2955 ],
2956 "oninvalid": [
2957 "/// Stream of `invalid` events handled by this [Window]."
2958 ],
2959 "onkeydown": [
2960 "/// Stream of `keydown` events handled by this [Window]."
2961 ],
2962 "onkeypress": [
2963 "/// Stream of `keypress` events handled by this [Window]."
2964 ],
2965 "onkeyup": [
2966 "/// Stream of `keyup` events handled by this [Window]."
2967 ],
2968 "onlineEvent": [
2969 "/**",
2970 " * Static factory designed to expose `online` events to event",
2971 " * handlers that are not necessarily instances of [Window].",
2972 " *",
2973 " * See [EventStreamProvider] for usage information.",
2974 " */"
2975 ],
2976 "onload": [
2977 "/// Stream of `load` events handled by this [Window]."
2978 ],
2979 "onmessage": [
2980 "/// Stream of `message` events handled by this [Window]."
2981 ],
2982 "onmousedown": [
2983 "/// Stream of `mousedown` events handled by this [Window]."
2984 ],
2985 "onmouseenter": [
2986 "/// Stream of `mouseenter` events handled by this [Window]."
2987 ],
2988 "onmouseleave": [
2989 "/// Stream of `mouseleave` events handled by this [Window]."
2990 ],
2991 "onmousemove": [
2992 "/// Stream of `mousemove` events handled by this [Window]."
2993 ],
2994 "onmouseout": [
2995 "/// Stream of `mouseout` events handled by this [Window]."
2996 ],
2997 "onmouseover": [
2998 "/// Stream of `mouseover` events handled by this [Window]."
2999 ],
3000 "onmouseup": [
3001 "/// Stream of `mouseup` events handled by this [Window]."
3002 ],
3003 "onmousewheel": [
3004 "/// Stream of `mousewheel` events handled by this [Window]."
3005 ],
3006 "onoffline": [
3007 "/// Stream of `offline` events handled by this [Window]."
3008 ],
3009 "ononline": [
3010 "/// Stream of `online` events handled by this [Window]."
3011 ],
3012 "onpagehide": [
3013 "/// Stream of `pagehide` events handled by this [Window]."
3014 ],
3015 "onpageshow": [
3016 "/// Stream of `pageshow` events handled by this [Window]."
3017 ],
3018 "onpopstate": [
3019 "/// Stream of `popstate` events handled by this [Window]."
3020 ],
3021 "onreset": [
3022 "/// Stream of `reset` events handled by this [Window]."
3023 ],
3024 "onresize": [
3025 "/// Stream of `resize` events handled by this [Window]."
3026 ],
3027 "onscroll": [
3028 "/// Stream of `scroll` events handled by this [Window]."
3029 ],
3030 "onsearch": [
3031 "/// Stream of `search` events handled by this [Window]."
3032 ],
3033 "onselect": [
3034 "/// Stream of `select` events handled by this [Window]."
3035 ],
3036 "onstorage": [
3037 "/// Stream of `storage` events handled by this [Window]."
3038 ],
3039 "onsubmit": [
3040 "/// Stream of `submit` events handled by this [Window]."
3041 ],
3042 "ontouchcancel": [
3043 "/// Stream of `touchcancel` events handled by this [Window]."
3044 ],
3045 "ontouchend": [
3046 "/// Stream of `touchend` events handled by this [Window]."
3047 ],
3048 "ontouchmove": [
3049 "/// Stream of `touchmove` events handled by this [Window]."
3050 ],
3051 "ontouchstart": [
3052 "/// Stream of `touchstart` events handled by this [Window]."
3053 ],
3054 "ontransitionend": [
3055 "/// Stream of `transitionend` events handled by this [Window]."
3056 ],
3057 "onunload": [
3058 "/// Stream of `unload` events handled by this [Window]."
3059 ],
3060 "onwebkitAnimationEnd": [
3061 "/// Stream of `animationend` events handled by this [Window]."
3062 ],
3063 "onwebkitAnimationIteration": [
3064 "/// Stream of `animationiteration` events handled by this [Window]."
3065 ],
3066 "onwebkitAnimationStart": [
3067 "/// Stream of `animationstart` events handled by this [Window]."
3068 ],
3069 "pagehideEvent": [
3070 "/**",
3071 " * Static factory designed to expose `pagehide` events to event",
3072 " * handlers that are not necessarily instances of [Window].",
3073 " *",
3074 " * See [EventStreamProvider] for usage information.",
3075 " */"
3076 ],
3077 "pageshowEvent": [
3078 "/**",
3079 " * Static factory designed to expose `pageshow` events to event",
3080 " * handlers that are not necessarily instances of [Window].",
3081 " *",
3082 " * See [EventStreamProvider] for usage information.",
3083 " */"
3084 ],
3085 "popstateEvent": [
3086 "/**",
3087 " * Static factory designed to expose `popstate` events to event",
3088 " * handlers that are not necessarily instances of [Window].",
3089 " *",
3090 " * See [EventStreamProvider] for usage information.",
3091 " */"
3092 ],
3093 "resizeEvent": [
3094 "/**",
3095 " * Static factory designed to expose `resize` events to event",
3096 " * handlers that are not necessarily instances of [Window].",
3097 " *",
3098 " * See [EventStreamProvider] for usage information.",
3099 " */"
3100 ],
3101 "storageEvent": [
3102 "/**",
3103 " * Static factory designed to expose `storage` events to event",
3104 " * handlers that are not necessarily instances of [Window].",
3105 " *",
3106 " * See [EventStreamProvider] for usage information.",
3107 " */"
3108 ],
3109 "unloadEvent": [
3110 "/**",
3111 " * Static factory designed to expose `unload` events to event",
3112 " * handlers that are not necessarily instances of [Window].",
3113 " *",
3114 " * See [EventStreamProvider] for usage information.",
3115 " */"
3116 ],
3117 "webkitAnimationEndEvent": [
3118 "/**",
3119 " * Static factory designed to expose `animationend` events to event ",
3120 " * handlers that are not necessarily instances of [Window].",
3121 " *",
3122 " * See [EventStreamProvider] for usage information.",
3123 " */"
3124 ],
3125 "webkitAnimationIterationEvent": [
3126 "/**",
3127 " * Static factory designed to expose `animationiteration` events to event",
3128 " * handlers that are not necessarily instances of [Window].",
3129 " *",
3130 " * See [EventStreamProvider] for usage information.",
3131 " */"
3132 ],
3133 "webkitAnimationStartEvent": [
3134 "/**",
3135 " * Static factory designed to expose `animationstart` events to eve nt",
3136 " * handlers that are not necessarily instances of [Window].",
3137 " *",
3138 " * See [EventStreamProvider] for usage information.",
3139 " */"
3140 ]
3141 }
3142 },
3143 "Worker": {
3144 "members": {
3145 "errorEvent": [
3146 "/**",
3147 " * Static factory designed to expose `error` events to event",
3148 " * handlers that are not necessarily instances of [Worker].",
3149 " *",
3150 " * See [EventStreamProvider] for usage information.",
3151 " */"
3152 ],
3153 "messageEvent": [
3154 "/**",
3155 " * Static factory designed to expose `message` events to event",
3156 " * handlers that are not necessarily instances of [Worker].",
3157 " *",
3158 " * See [EventStreamProvider] for usage information.",
3159 " */"
3160 ],
3161 "onerror": [
3162 "/// Stream of `error` events handled by this [Worker]."
3163 ],
3164 "onmessage": [
3165 "/// Stream of `message` events handled by this [Worker]."
3166 ]
3167 }
3168 },
3169 "WorkerGlobalScope": {
3170 "members": {
3171 "errorEvent": [
3172 "/**",
3173 " * Static factory designed to expose `error` events to event",
3174 " * handlers that are not necessarily instances of [WorkerGlobalScop e].",
3175 " *",
3176 " * See [EventStreamProvider] for usage information.",
3177 " */"
3178 ],
3179 "onerror": [
3180 "/// Stream of `error` events handled by this [WorkerGlobalScope]."
3181 ]
3182 }
343 }, 3183 },
344 "XMLHttpRequest": { 3184 "XMLHttpRequest": {
345 "members": { 3185 "members": {
346 "abort": [ 3186 "abort": [
347 "/**", 3187 "/**",
348 " * Stop the current request.", 3188 " * Stop the current request.",
349 " *", 3189 " *",
350 " * The request can only be stopped if readyState is `HEADERS_RECIEV ED` or", 3190 " * The request can only be stopped if readyState is `HEADERS_RECIEV ED` or",
351 " * `LOADING`. If this method is not in the process of being sent, t he method", 3191 " * `LOADING`. If this method is not in the process of being sent, t he method",
352 " * has no effect.", 3192 " * has no effect.",
(...skipping 13 matching lines...) Expand all
366 ], 3206 ],
367 "getResponseHeader": [ 3207 "getResponseHeader": [
368 "/**", 3208 "/**",
369 " * Return the response header named `header`, or `null` if not foun d.", 3209 " * Return the response header named `header`, or `null` if not foun d.",
370 " *", 3210 " *",
371 " * See also [HTTP response headers](http://en.wikipedia.org/wiki/Li st_of_HTTP_header_fields#Responses)", 3211 " * See also [HTTP response headers](http://en.wikipedia.org/wiki/Li st_of_HTTP_header_fields#Responses)",
372 " * for a list of common response headers.", 3212 " * for a list of common response headers.",
373 " */" 3213 " */"
374 ], 3214 ],
375 "onreadystatechange": [ 3215 "onreadystatechange": [
3216 "/// Stream of `readystatechange` events handled by this [HttpRequest] .",
376 "/**", 3217 "/**",
377 " * Event listeners to be notified every time the [HttpRequest]", 3218 " * Event listeners to be notified every time the [HttpRequest]",
378 " * object's `readyState` changes values.", 3219 " * object's `readyState` changes values.",
379 " */" 3220 " */"
380 ], 3221 ],
381 "open": [ 3222 "open": [
382 "/**", 3223 "/**",
383 " * Specify the desired `url`, and `method` to use in making the req uest.", 3224 " * Specify the desired `url`, and `method` to use in making the req uest.",
384 " *", 3225 " *",
385 " * By default the request is done asyncronously, with no user or pa ssword", 3226 " * By default the request is done asyncronously, with no user or pa ssword",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 " * </tr>", 3272 " * </tr>",
432 " * <tr>", 3273 " * <tr>",
433 " * <td>3</td> <td>loading</td> <td><code>responseText</code> ho lds some data</td>", 3274 " * <td>3</td> <td>loading</td> <td><code>responseText</code> ho lds some data</td>",
434 " * </tr>", 3275 " * </tr>",
435 " * <tr>", 3276 " * <tr>",
436 " * <td>4</td> <td>done</td> <td>request is complete</td>", 3277 " * <td>4</td> <td>done</td> <td>request is complete</td>",
437 " * </tr>", 3278 " * </tr>",
438 " * </table>", 3279 " * </table>",
439 " */" 3280 " */"
440 ], 3281 ],
3282 "readystatechangeEvent": [
3283 "/**",
3284 " * Static factory designed to expose `readystatechange` events to e vent",
3285 " * handlers that are not necessarily instances of [HttpRequest].",
3286 " *",
3287 " * See [EventStreamProvider] for usage information.",
3288 " */"
3289 ],
441 "response": [ 3290 "response": [
442 "/**", 3291 "/**",
443 " * The data received as a reponse from the request.", 3292 " * The data received as a reponse from the request.",
444 " *", 3293 " *",
445 " * The data could be in the", 3294 " * The data could be in the",
446 " * form of a [String], [ByteBuffer], [Document], [Blob], or json (a lso a", 3295 " * form of a [String], [ByteBuffer], [Document], [Blob], or json (a lso a",
447 " * [String]). `null` indicates request failure.", 3296 " * [String]). `null` indicates request failure.",
448 " */" 3297 " */"
449 ], 3298 ],
450 "responseText": [ 3299 "responseText": [
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 " * 'Request complete ${event.target.reponseText}'));", 3375 " * 'Request complete ${event.target.reponseText}'));",
527 " * request.send();", 3376 " * request.send();",
528 " *", 3377 " *",
529 " * is the (more verbose) equivalent of", 3378 " * is the (more verbose) equivalent of",
530 " *", 3379 " *",
531 " * HttpRequest.getString('http://dartlang.org').then(", 3380 " * HttpRequest.getString('http://dartlang.org').then(",
532 " * (result) => print('Request complete: $result'));", 3381 " * (result) => print('Request complete: $result'));",
533 " */" 3382 " */"
534 ] 3383 ]
535 } 3384 }
3385 },
3386 "XMLHttpRequestEventTarget": {
3387 "members": {
3388 "abortEvent": [
3389 "/**",
3390 " * Static factory designed to expose `abort` events to event",
3391 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3392 " *",
3393 " * See [EventStreamProvider] for usage information.",
3394 " */"
3395 ],
3396 "errorEvent": [
3397 "/**",
3398 " * Static factory designed to expose `error` events to event",
3399 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3400 " *",
3401 " * See [EventStreamProvider] for usage information.",
3402 " */"
3403 ],
3404 "loadendEvent": [
3405 "/**",
3406 " * Static factory designed to expose `loadend` events to event",
3407 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3408 " *",
3409 " * See [EventStreamProvider] for usage information.",
3410 " */"
3411 ],
3412 "loadEvent": [
3413 "/**",
3414 " * Static factory designed to expose `load` events to event",
3415 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3416 " *",
3417 " * See [EventStreamProvider] for usage information.",
3418 " */"
3419 ],
3420 "loadstartEvent": [
3421 "/**",
3422 " * Static factory designed to expose `loadstart` events to event",
3423 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3424 " *",
3425 " * See [EventStreamProvider] for usage information.",
3426 " */"
3427 ],
3428 "onabort": [
3429 "/// Stream of `abort` events handled by this [HttpRequestEventTarget] ."
3430 ],
3431 "onerror": [
3432 "/// Stream of `error` events handled by this [HttpRequestEventTarget] ."
3433 ],
3434 "onload": [
3435 "/// Stream of `load` events handled by this [HttpRequestEventTarget]. "
3436 ],
3437 "onloadend": [
3438 "/// Stream of `loadend` events handled by this [HttpRequestEventTarge t]."
3439 ],
3440 "onloadstart": [
3441 "/// Stream of `loadstart` events handled by this [HttpRequestEventTar get]."
3442 ],
3443 "onprogress": [
3444 "/// Stream of `progress` events handled by this [HttpRequestEventTarg et]."
3445 ],
3446 "ontimeout": [
3447 "/// Stream of `timeout` events handled by this [HttpRequestEventTarge t]."
3448 ],
3449 "progressEvent": [
3450 "/**",
3451 " * Static factory designed to expose `progress` events to event",
3452 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3453 " *",
3454 " * See [EventStreamProvider] for usage information.",
3455 " */"
3456 ],
3457 "timeoutEvent": [
3458 "/**",
3459 " * Static factory designed to expose `timeout` events to event",
3460 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3461 " *",
3462 " * See [EventStreamProvider] for usage information.",
3463 " */"
3464 ]
3465 }
536 } 3466 }
537 }, 3467 },
538 "dart.dom.indexed_db": { 3468 "dart.dom.indexed_db": {
539 "IDBDatabase": { 3469 "IDBDatabase": {
540 "comment": [ 3470 "comment": [
541 "/**", 3471 "/**",
542 " * An indexed database object for storing client-side data", 3472 " * An indexed database object for storing client-side data",
543 " * in web apps.", 3473 " * in web apps.",
544 " */" 3474 " */"
545 ] 3475 ],
3476 "members": {
3477 "abortEvent": [
3478 "/**",
3479 " * Static factory designed to expose `abort` events to event",
3480 " * handlers that are not necessarily instances of [Database].",
3481 " *",
3482 " * See [EventStreamProvider] for usage information.",
3483 " */"
3484 ],
3485 "closeEvent": [
3486 "/**",
3487 " * Static factory designed to expose `close` events to event",
3488 " * handlers that are not necessarily instances of [Database].",
3489 " *",
3490 " * See [EventStreamProvider] for usage information.",
3491 " */"
3492 ],
3493 "errorEvent": [
3494 "/**",
3495 " * Static factory designed to expose `error` events to event",
3496 " * handlers that are not necessarily instances of [Database].",
3497 " *",
3498 " * See [EventStreamProvider] for usage information.",
3499 " */"
3500 ],
3501 "onabort": [
3502 "/// Stream of `abort` events handled by this [Database]."
3503 ],
3504 "onclose": [
3505 "/// Stream of `close` events handled by this [Database]."
3506 ],
3507 "onerror": [
3508 "/// Stream of `error` events handled by this [Database]."
3509 ],
3510 "onversionchange": [
3511 "/// Stream of `versionchange` events handled by this [Database]."
3512 ],
3513 "versionchangeEvent": [
3514 "/**",
3515 " * Static factory designed to expose `versionchange` events to even t",
3516 " * handlers that are not necessarily instances of [Database].",
3517 " *",
3518 " * See [EventStreamProvider] for usage information.",
3519 " */"
3520 ]
3521 }
3522 },
3523 "IDBOpenDBRequest": {
3524 "members": {
3525 "blockedEvent": [
3526 "/**",
3527 " * Static factory designed to expose `blocked` events to event",
3528 " * handlers that are not necessarily instances of [OpenDBRequest]." ,
3529 " *",
3530 " * See [EventStreamProvider] for usage information.",
3531 " */"
3532 ],
3533 "onblocked": [
3534 "/// Stream of `blocked` events handled by this [OpenDBRequest]."
3535 ],
3536 "onupgradeneeded": [
3537 "/// Stream of `upgradeneeded` events handled by this [OpenDBRequest]. "
3538 ],
3539 "upgradeneededEvent": [
3540 "/**",
3541 " * Static factory designed to expose `upgradeneeded` events to even t",
3542 " * handlers that are not necessarily instances of [OpenDBRequest]." ,
3543 " *",
3544 " * See [EventStreamProvider] for usage information.",
3545 " */"
3546 ]
3547 }
3548 },
3549 "IDBRequest": {
3550 "members": {
3551 "errorEvent": [
3552 "/**",
3553 " * Static factory designed to expose `error` events to event",
3554 " * handlers that are not necessarily instances of [Request].",
3555 " *",
3556 " * See [EventStreamProvider] for usage information.",
3557 " */"
3558 ],
3559 "onerror": [
3560 "/// Stream of `error` events handled by this [Request]."
3561 ],
3562 "onsuccess": [
3563 "/// Stream of `success` events handled by this [Request]."
3564 ],
3565 "successEvent": [
3566 "/**",
3567 " * Static factory designed to expose `success` events to event",
3568 " * handlers that are not necessarily instances of [Request].",
3569 " *",
3570 " * See [EventStreamProvider] for usage information.",
3571 " */"
3572 ]
3573 }
3574 },
3575 "IDBTransaction": {
3576 "members": {
3577 "abortEvent": [
3578 "/**",
3579 " * Static factory designed to expose `abort` events to event",
3580 " * handlers that are not necessarily instances of [Transaction].",
3581 " *",
3582 " * See [EventStreamProvider] for usage information.",
3583 " */"
3584 ],
3585 "completeEvent": [
3586 "/**",
3587 " * Static factory designed to expose `complete` events to event",
3588 " * handlers that are not necessarily instances of [Transaction].",
3589 " *",
3590 " * See [EventStreamProvider] for usage information.",
3591 " */"
3592 ],
3593 "errorEvent": [
3594 "/**",
3595 " * Static factory designed to expose `error` events to event",
3596 " * handlers that are not necessarily instances of [Transaction].",
3597 " *",
3598 " * See [EventStreamProvider] for usage information.",
3599 " */"
3600 ],
3601 "onabort": [
3602 "/// Stream of `abort` events handled by this [Transaction]."
3603 ],
3604 "oncomplete": [
3605 "/// Stream of `complete` events handled by this [Transaction]."
3606 ],
3607 "onerror": [
3608 "/// Stream of `error` events handled by this [Transaction]."
3609 ]
3610 }
3611 }
3612 },
3613 "dart.dom.svg": {
3614 "SVGElementInstance": {
3615 "members": {
3616 "abortEvent": [
3617 "/**",
3618 " * Static factory designed to expose `abort` events to event",
3619 " * handlers that are not necessarily instances of [ElementInstance] .",
3620 " *",
3621 " * See [EventStreamProvider] for usage information.",
3622 " */"
3623 ],
3624 "beforecopyEvent": [
3625 "/**",
3626 " * Static factory designed to expose `beforecopy` events to event",
3627 " * handlers that are not necessarily instances of [ElementInstance] .",
3628 " *",
3629 " * See [EventStreamProvider] for usage information.",
3630 " */"
3631 ],
3632 "beforecutEvent": [
3633 "/**",
3634 " * Static factory designed to expose `beforecut` events to event",
3635 " * handlers that are not necessarily instances of [ElementInstance] .",
3636 " *",
3637 " * See [EventStreamProvider] for usage information.",
3638 " */"
3639 ],
3640 "beforepasteEvent": [
3641 "/**",
3642 " * Static factory designed to expose `beforepaste` events to event" ,
3643 " * handlers that are not necessarily instances of [ElementInstance] .",
3644 " *",
3645 " * See [EventStreamProvider] for usage information.",
3646 " */"
3647 ],
3648 "blurEvent": [
3649 "/**",
3650 " * Static factory designed to expose `blur` events to event",
3651 " * handlers that are not necessarily instances of [ElementInstance] .",
3652 " *",
3653 " * See [EventStreamProvider] for usage information.",
3654 " */"
3655 ],
3656 "changeEvent": [
3657 "/**",
3658 " * Static factory designed to expose `change` events to event",
3659 " * handlers that are not necessarily instances of [ElementInstance] .",
3660 " *",
3661 " * See [EventStreamProvider] for usage information.",
3662 " */"
3663 ],
3664 "clickEvent": [
3665 "/**",
3666 " * Static factory designed to expose `click` events to event",
3667 " * handlers that are not necessarily instances of [ElementInstance] .",
3668 " *",
3669 " * See [EventStreamProvider] for usage information.",
3670 " */"
3671 ],
3672 "contextmenuEvent": [
3673 "/**",
3674 " * Static factory designed to expose `contextmenu` events to event" ,
3675 " * handlers that are not necessarily instances of [ElementInstance] .",
3676 " *",
3677 " * See [EventStreamProvider] for usage information.",
3678 " */"
3679 ],
3680 "copyEvent": [
3681 "/**",
3682 " * Static factory designed to expose `copy` events to event",
3683 " * handlers that are not necessarily instances of [ElementInstance] .",
3684 " *",
3685 " * See [EventStreamProvider] for usage information.",
3686 " */"
3687 ],
3688 "cutEvent": [
3689 "/**",
3690 " * Static factory designed to expose `cut` events to event",
3691 " * handlers that are not necessarily instances of [ElementInstance] .",
3692 " *",
3693 " * See [EventStreamProvider] for usage information.",
3694 " */"
3695 ],
3696 "dblclickEvent": [
3697 "/**",
3698 " * Static factory designed to expose `doubleclick` events to event" ,
3699 " * handlers that are not necessarily instances of [ElementInstance] .",
3700 " *",
3701 " * See [EventStreamProvider] for usage information.",
3702 " */"
3703 ],
3704 "dragendEvent": [
3705 "/**",
3706 " * Static factory designed to expose `dragend` events to event",
3707 " * handlers that are not necessarily instances of [ElementInstance] .",
3708 " *",
3709 " * See [EventStreamProvider] for usage information.",
3710 " */"
3711 ],
3712 "dragenterEvent": [
3713 "/**",
3714 " * Static factory designed to expose `dragenter` events to event",
3715 " * handlers that are not necessarily instances of [ElementInstance] .",
3716 " *",
3717 " * See [EventStreamProvider] for usage information.",
3718 " */"
3719 ],
3720 "dragEvent": [
3721 "/**",
3722 " * Static factory designed to expose `drag` events to event",
3723 " * handlers that are not necessarily instances of [ElementInstance] .",
3724 " *",
3725 " * See [EventStreamProvider] for usage information.",
3726 " */"
3727 ],
3728 "dragleaveEvent": [
3729 "/**",
3730 " * Static factory designed to expose `dragleave` events to event",
3731 " * handlers that are not necessarily instances of [ElementInstance] .",
3732 " *",
3733 " * See [EventStreamProvider] for usage information.",
3734 " */"
3735 ],
3736 "dragoverEvent": [
3737 "/**",
3738 " * Static factory designed to expose `dragover` events to event",
3739 " * handlers that are not necessarily instances of [ElementInstance] .",
3740 " *",
3741 " * See [EventStreamProvider] for usage information.",
3742 " */"
3743 ],
3744 "dragstartEvent": [
3745 "/**",
3746 " * Static factory designed to expose `dragstart` events to event",
3747 " * handlers that are not necessarily instances of [ElementInstance] .",
3748 " *",
3749 " * See [EventStreamProvider] for usage information.",
3750 " */"
3751 ],
3752 "dropEvent": [
3753 "/**",
3754 " * Static factory designed to expose `drop` events to event",
3755 " * handlers that are not necessarily instances of [ElementInstance] .",
3756 " *",
3757 " * See [EventStreamProvider] for usage information.",
3758 " */"
3759 ],
3760 "errorEvent": [
3761 "/**",
3762 " * Static factory designed to expose `error` events to event",
3763 " * handlers that are not necessarily instances of [ElementInstance] .",
3764 " *",
3765 " * See [EventStreamProvider] for usage information.",
3766 " */"
3767 ],
3768 "focusEvent": [
3769 "/**",
3770 " * Static factory designed to expose `focus` events to event",
3771 " * handlers that are not necessarily instances of [ElementInstance] .",
3772 " *",
3773 " * See [EventStreamProvider] for usage information.",
3774 " */"
3775 ],
3776 "inputEvent": [
3777 "/**",
3778 " * Static factory designed to expose `input` events to event",
3779 " * handlers that are not necessarily instances of [ElementInstance] .",
3780 " *",
3781 " * See [EventStreamProvider] for usage information.",
3782 " */"
3783 ],
3784 "keydownEvent": [
3785 "/**",
3786 " * Static factory designed to expose `keydown` events to event",
3787 " * handlers that are not necessarily instances of [ElementInstance] .",
3788 " *",
3789 " * See [EventStreamProvider] for usage information.",
3790 " */"
3791 ],
3792 "keypressEvent": [
3793 "/**",
3794 " * Static factory designed to expose `keypress` events to event",
3795 " * handlers that are not necessarily instances of [ElementInstance] .",
3796 " *",
3797 " * See [EventStreamProvider] for usage information.",
3798 " */"
3799 ],
3800 "keyupEvent": [
3801 "/**",
3802 " * Static factory designed to expose `keyup` events to event",
3803 " * handlers that are not necessarily instances of [ElementInstance] .",
3804 " *",
3805 " * See [EventStreamProvider] for usage information.",
3806 " */"
3807 ],
3808 "loadEvent": [
3809 "/**",
3810 " * Static factory designed to expose `load` events to event",
3811 " * handlers that are not necessarily instances of [ElementInstance] .",
3812 " *",
3813 " * See [EventStreamProvider] for usage information.",
3814 " */"
3815 ],
3816 "mousedownEvent": [
3817 "/**",
3818 " * Static factory designed to expose `mousedown` events to event",
3819 " * handlers that are not necessarily instances of [ElementInstance] .",
3820 " *",
3821 " * See [EventStreamProvider] for usage information.",
3822 " */"
3823 ],
3824 "mouseenterEvent": [
3825 "/**",
3826 " * Static factory designed to expose `mouseenter` events to event",
3827 " * handlers that are not necessarily instances of [ElementInstance] .",
3828 " *",
3829 " * See [EventStreamProvider] for usage information.",
3830 " */"
3831 ],
3832 "mouseleaveEvent": [
3833 "/**",
3834 " * Static factory designed to expose `mouseleave` events to event",
3835 " * handlers that are not necessarily instances of [ElementInstance] .",
3836 " *",
3837 " * See [EventStreamProvider] for usage information.",
3838 " */"
3839 ],
3840 "mousemoveEvent": [
3841 "/**",
3842 " * Static factory designed to expose `mousemove` events to event",
3843 " * handlers that are not necessarily instances of [ElementInstance] .",
3844 " *",
3845 " * See [EventStreamProvider] for usage information.",
3846 " */"
3847 ],
3848 "mouseoutEvent": [
3849 "/**",
3850 " * Static factory designed to expose `mouseout` events to event",
3851 " * handlers that are not necessarily instances of [ElementInstance] .",
3852 " *",
3853 " * See [EventStreamProvider] for usage information.",
3854 " */"
3855 ],
3856 "mouseoverEvent": [
3857 "/**",
3858 " * Static factory designed to expose `mouseover` events to event",
3859 " * handlers that are not necessarily instances of [ElementInstance] .",
3860 " *",
3861 " * See [EventStreamProvider] for usage information.",
3862 " */"
3863 ],
3864 "mouseupEvent": [
3865 "/**",
3866 " * Static factory designed to expose `mouseup` events to event",
3867 " * handlers that are not necessarily instances of [ElementInstance] .",
3868 " *",
3869 " * See [EventStreamProvider] for usage information.",
3870 " */"
3871 ],
3872 "mousewheelEvent": [
3873 "/**",
3874 " * Static factory designed to expose `mousewheel` events to event",
3875 " * handlers that are not necessarily instances of [ElementInstance] .",
3876 " *",
3877 " * See [EventStreamProvider] for usage information.",
3878 " */"
3879 ],
3880 "onabort": [
3881 "/// Stream of `abort` events handled by this [ElementInstance]."
3882 ],
3883 "onbeforecopy": [
3884 "/// Stream of `beforecopy` events handled by this [ElementInstance]."
3885 ],
3886 "onbeforecut": [
3887 "/// Stream of `beforecut` events handled by this [ElementInstance]."
3888 ],
3889 "onbeforepaste": [
3890 "/// Stream of `beforepaste` events handled by this [ElementInstance]. "
3891 ],
3892 "onblur": [
3893 "/// Stream of `blur` events handled by this [ElementInstance]."
3894 ],
3895 "onchange": [
3896 "/// Stream of `change` events handled by this [ElementInstance]."
3897 ],
3898 "onclick": [
3899 "/// Stream of `click` events handled by this [ElementInstance]."
3900 ],
3901 "oncontextmenu": [
3902 "/// Stream of `contextmenu` events handled by this [ElementInstance]. "
3903 ],
3904 "oncopy": [
3905 "/// Stream of `copy` events handled by this [ElementInstance]."
3906 ],
3907 "oncut": [
3908 "/// Stream of `cut` events handled by this [ElementInstance]."
3909 ],
3910 "ondblclick": [
3911 "/// Stream of `doubleclick` events handled by this [ElementInstance]. "
3912 ],
3913 "ondrag": [
3914 "/// Stream of `drag` events handled by this [ElementInstance]."
3915 ],
3916 "ondragend": [
3917 "/// Stream of `dragend` events handled by this [ElementInstance]."
3918 ],
3919 "ondragenter": [
3920 "/// Stream of `dragenter` events handled by this [ElementInstance]."
3921 ],
3922 "ondragleave": [
3923 "/// Stream of `dragleave` events handled by this [ElementInstance]."
3924 ],
3925 "ondragover": [
3926 "/// Stream of `dragover` events handled by this [ElementInstance]."
3927 ],
3928 "ondragstart": [
3929 "/// Stream of `dragstart` events handled by this [ElementInstance]."
3930 ],
3931 "ondrop": [
3932 "/// Stream of `drop` events handled by this [ElementInstance]."
3933 ],
3934 "onerror": [
3935 "/// Stream of `error` events handled by this [ElementInstance]."
3936 ],
3937 "onfocus": [
3938 "/// Stream of `focus` events handled by this [ElementInstance]."
3939 ],
3940 "oninput": [
3941 "/// Stream of `input` events handled by this [ElementInstance]."
3942 ],
3943 "onkeydown": [
3944 "/// Stream of `keydown` events handled by this [ElementInstance]."
3945 ],
3946 "onkeypress": [
3947 "/// Stream of `keypress` events handled by this [ElementInstance]."
3948 ],
3949 "onkeyup": [
3950 "/// Stream of `keyup` events handled by this [ElementInstance]."
3951 ],
3952 "onload": [
3953 "/// Stream of `load` events handled by this [ElementInstance]."
3954 ],
3955 "onmousedown": [
3956 "/// Stream of `mousedown` events handled by this [ElementInstance]."
3957 ],
3958 "onmouseenter": [
3959 "/// Stream of `mouseenter` events handled by this [ElementInstance]."
3960 ],
3961 "onmouseleave": [
3962 "/// Stream of `mouseleave` events handled by this [ElementInstance]."
3963 ],
3964 "onmousemove": [
3965 "/// Stream of `mousemove` events handled by this [ElementInstance]."
3966 ],
3967 "onmouseout": [
3968 "/// Stream of `mouseout` events handled by this [ElementInstance]."
3969 ],
3970 "onmouseover": [
3971 "/// Stream of `mouseover` events handled by this [ElementInstance]."
3972 ],
3973 "onmouseup": [
3974 "/// Stream of `mouseup` events handled by this [ElementInstance]."
3975 ],
3976 "onmousewheel": [
3977 "/// Stream of `mousewheel` events handled by this [ElementInstance]."
3978 ],
3979 "onpaste": [
3980 "/// Stream of `paste` events handled by this [ElementInstance]."
3981 ],
3982 "onreset": [
3983 "/// Stream of `reset` events handled by this [ElementInstance]."
3984 ],
3985 "onresize": [
3986 "/// Stream of `resize` events handled by this [ElementInstance]."
3987 ],
3988 "onscroll": [
3989 "/// Stream of `scroll` events handled by this [ElementInstance]."
3990 ],
3991 "onsearch": [
3992 "/// Stream of `search` events handled by this [ElementInstance]."
3993 ],
3994 "onselect": [
3995 "/// Stream of `select` events handled by this [ElementInstance]."
3996 ],
3997 "onselectstart": [
3998 "/// Stream of `selectstart` events handled by this [ElementInstance]. "
3999 ],
4000 "onsubmit": [
4001 "/// Stream of `submit` events handled by this [ElementInstance]."
4002 ],
4003 "onunload": [
4004 "/// Stream of `unload` events handled by this [ElementInstance]."
4005 ],
4006 "pasteEvent": [
4007 "/**",
4008 " * Static factory designed to expose `paste` events to event",
4009 " * handlers that are not necessarily instances of [ElementInstance] .",
4010 " *",
4011 " * See [EventStreamProvider] for usage information.",
4012 " */"
4013 ],
4014 "resetEvent": [
4015 "/**",
4016 " * Static factory designed to expose `reset` events to event",
4017 " * handlers that are not necessarily instances of [ElementInstance] .",
4018 " *",
4019 " * See [EventStreamProvider] for usage information.",
4020 " */"
4021 ],
4022 "resizeEvent": [
4023 "/**",
4024 " * Static factory designed to expose `resize` events to event",
4025 " * handlers that are not necessarily instances of [ElementInstance] .",
4026 " *",
4027 " * See [EventStreamProvider] for usage information.",
4028 " */"
4029 ],
4030 "scrollEvent": [
4031 "/**",
4032 " * Static factory designed to expose `scroll` events to event",
4033 " * handlers that are not necessarily instances of [ElementInstance] .",
4034 " *",
4035 " * See [EventStreamProvider] for usage information.",
4036 " */"
4037 ],
4038 "searchEvent": [
4039 "/**",
4040 " * Static factory designed to expose `search` events to event",
4041 " * handlers that are not necessarily instances of [ElementInstance] .",
4042 " *",
4043 " * See [EventStreamProvider] for usage information.",
4044 " */"
4045 ],
4046 "selectEvent": [
4047 "/**",
4048 " * Static factory designed to expose `select` events to event",
4049 " * handlers that are not necessarily instances of [ElementInstance] .",
4050 " *",
4051 " * See [EventStreamProvider] for usage information.",
4052 " */"
4053 ],
4054 "selectstartEvent": [
4055 "/**",
4056 " * Static factory designed to expose `selectstart` events to event" ,
4057 " * handlers that are not necessarily instances of [ElementInstance] .",
4058 " *",
4059 " * See [EventStreamProvider] for usage information.",
4060 " */"
4061 ],
4062 "submitEvent": [
4063 "/**",
4064 " * Static factory designed to expose `submit` events to event",
4065 " * handlers that are not necessarily instances of [ElementInstance] .",
4066 " *",
4067 " * See [EventStreamProvider] for usage information.",
4068 " */"
4069 ],
4070 "unloadEvent": [
4071 "/**",
4072 " * Static factory designed to expose `unload` events to event",
4073 " * handlers that are not necessarily instances of [ElementInstance] .",
4074 " *",
4075 " * See [EventStreamProvider] for usage information.",
4076 " */"
4077 ]
4078 }
546 } 4079 }
547 }, 4080 },
548 "dart.dom.web_audio": { 4081 "dart.dom.web_audio": {
4082 "AudioBufferSourceNode": {
4083 "members": {
4084 "endedEvent": [
4085 "/**",
4086 " * Static factory designed to expose `ended` events to event",
4087 " * handlers that are not necessarily instances of [AudioBufferSourc eNode].",
4088 " *",
4089 " * See [EventStreamProvider] for usage information.",
4090 " */"
4091 ],
4092 "onended": [
4093 "/// Stream of `ended` events handled by this [AudioBufferSourceNode]. "
4094 ]
4095 }
4096 },
4097 "AudioContext": {
4098 "members": {
4099 "completeEvent": [
4100 "/**",
4101 " * Static factory designed to expose `complete` events to event",
4102 " * handlers that are not necessarily instances of [AudioContext].",
4103 " *",
4104 " * See [EventStreamProvider] for usage information.",
4105 " */"
4106 ],
4107 "oncomplete": [
4108 "/// Stream of `complete` events handled by this [AudioContext]."
4109 ]
4110 }
4111 },
4112 "OscillatorNode": {
4113 "members": {
4114 "endedEvent": [
4115 "/**",
4116 " * Static factory designed to expose `ended` events to event",
4117 " * handlers that are not necessarily instances of [OscillatorNode]. ",
4118 " *",
4119 " * See [EventStreamProvider] for usage information.",
4120 " */"
4121 ],
4122 "onended": [
4123 "/// Stream of `ended` events handled by this [OscillatorNode]."
4124 ]
4125 }
4126 },
549 "ScriptProcessorNode": { 4127 "ScriptProcessorNode": {
550 "members": { 4128 "members": {
4129 "audioprocessEvent": [
4130 "/**",
4131 " * Static factory designed to expose `audioprocess` events to event ",
4132 " * handlers that are not necessarily instances of [ScriptProcessorN ode].",
4133 " *",
4134 " * See [EventStreamProvider] for usage information.",
4135 " */"
4136 ],
551 "onaudioprocess": [ 4137 "onaudioprocess": [
4138 "/// Stream of `audioprocess` events handled by this [ScriptProcessorN ode].",
552 "/**", 4139 "/**",
553 " * Get a Stream that fires events when AudioProcessingEvents occur. ", 4140 " * Get a Stream that fires events when AudioProcessingEvents occur. ",
554 " * This particular stream is special in that it only allows one lis tener to a", 4141 " * This particular stream is special in that it only allows one lis tener to a",
555 " * given stream. Converting the returned Stream [asBroadcast] will likely ruin", 4142 " * given stream. Converting the returned Stream [asBroadcast] will likely ruin",
556 " * the soft-real-time properties which which these events are fired and can", 4143 " * the soft-real-time properties which which these events are fired and can",
557 " * be processed.", 4144 " * be processed.",
558 " */" 4145 " */"
559 ] 4146 ]
560 } 4147 }
561 } 4148 }
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 " *", 4231 " *",
645 " * [oldVersion] should match the database's current [version] exact ly.", 4232 " * [oldVersion] should match the database's current [version] exact ly.",
646 " *", 4233 " *",
647 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 4234 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
648 " */" 4235 " */"
649 ] 4236 ]
650 } 4237 }
651 } 4238 }
652 } 4239 }
653 } 4240 }
OLDNEW
« no previous file with comments | « dart/tools/VERSION ('k') | dart/tools/dom/dom.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698