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

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

Issue 46143004: Added helpful information on all event getters and static members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Made event names all lowercase. 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
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 " * Static factory designed to expose `dragend` events to event",
566 " * handlers that are not necessarily instances of [Element].",
567 " *",
568 " * See [EventStreamProvider] for usage information.",
569 " */"
570 ],
571 "dragenterEvent": [
572 "/**",
573 " * Static factory designed to expose `dragenter` events to event",
574 " * handlers that are not necessarily instances of [Element].",
575 " *",
576 " * See [EventStreamProvider] for usage information.",
577 " */"
578 ],
579 "dragEvent": [
580 "/**",
581 " * Static factory designed to expose `drag` events to event",
582 " * handlers that are not necessarily instances of [Element].",
583 " *",
584 " * See [EventStreamProvider] for usage information.",
585 " */"
586 ],
587 "dragleaveEvent": [
588 "/**",
589 " * Static factory designed to expose `dragleave` events to event",
590 " * handlers that are not necessarily instances of [Element].",
591 " *",
592 " * See [EventStreamProvider] for usage information.",
593 " */"
594 ],
595 "dragoverEvent": [
596 "/**",
597 " * Static factory designed to expose `dragover` events to event",
598 " * handlers that are not necessarily instances of [Element].",
599 " *",
600 " * See [EventStreamProvider] for usage information.",
601 " */"
602 ],
603 "dragstartEvent": [
604 "/**",
605 " * Static factory designed to expose `dragstart` events to event",
606 " * handlers that are not necessarily instances of [Element].",
607 " *",
608 " * See [EventStreamProvider] for usage information.",
609 " */"
610 ],
611 "dropEvent": [
612 "/**",
613 " * Static factory designed to expose `drop` events to event",
614 " * handlers that are not necessarily instances of [Element].",
615 " *",
616 " * See [EventStreamProvider] for usage information.",
617 " */"
618 ],
619 "errorEvent": [
620 "/**",
621 " * Static factory designed to expose `error` events to event",
622 " * handlers that are not necessarily instances of [Element].",
623 " *",
624 " * See [EventStreamProvider] for usage information.",
625 " */"
626 ],
627 "focusEvent": [
628 "/**",
629 " * Static factory designed to expose `focus` events to event",
630 " * handlers that are not necessarily instances of [Element].",
631 " *",
632 " * See [EventStreamProvider] for usage information.",
633 " */"
634 ],
635 "inputEvent": [
636 "/**",
637 " * Static factory designed to expose `input` events to event",
638 " * handlers that are not necessarily instances of [Element].",
639 " *",
640 " * See [EventStreamProvider] for usage information.",
641 " */"
642 ],
643 "invalidEvent": [
644 "/**",
645 " * Static factory designed to expose `invalid` events to event",
646 " * handlers that are not necessarily instances of [Element].",
647 " *",
648 " * See [EventStreamProvider] for usage information.",
649 " */"
650 ],
651 "keydownEvent": [
652 "/**",
653 " * Static factory designed to expose `keydown` events to event",
654 " * handlers that are not necessarily instances of [Element].",
655 " *",
656 " * See [EventStreamProvider] for usage information.",
657 " */"
658 ],
659 "keypressEvent": [
660 "/**",
661 " * Static factory designed to expose `keypress` events to event",
662 " * handlers that are not necessarily instances of [Element].",
663 " *",
664 " * See [EventStreamProvider] for usage information.",
665 " */"
666 ],
667 "keyupEvent": [
668 "/**",
669 " * Static factory designed to expose `keyup` events to event",
670 " * handlers that are not necessarily instances of [Element].",
671 " *",
672 " * See [EventStreamProvider] for usage information.",
673 " */"
674 ],
675 "loadEvent": [
676 "/**",
677 " * Static factory designed to expose `load` events to event",
678 " * handlers that are not necessarily instances of [Element].",
679 " *",
680 " * See [EventStreamProvider] for usage information.",
681 " */"
682 ],
683 "mousedownEvent": [
684 "/**",
685 " * Static factory designed to expose `mousedown` events to event",
686 " * handlers that are not necessarily instances of [Element].",
687 " *",
688 " * See [EventStreamProvider] for usage information.",
689 " */"
690 ],
691 "mouseenterEvent": [
692 "/**",
693 " * Static factory designed to expose `mouseenter` events to event",
694 " * handlers that are not necessarily instances of [Element].",
695 " *",
696 " * See [EventStreamProvider] for usage information.",
697 " */"
698 ],
699 "mouseleaveEvent": [
700 "/**",
701 " * Static factory designed to expose `mouseleave` events to event",
702 " * handlers that are not necessarily instances of [Element].",
703 " *",
704 " * See [EventStreamProvider] for usage information.",
705 " */"
706 ],
707 "mousemoveEvent": [
708 "/**",
709 " * Static factory designed to expose `mousemove` events to event",
710 " * handlers that are not necessarily instances of [Element].",
711 " *",
712 " * See [EventStreamProvider] for usage information.",
713 " */"
714 ],
715 "mouseoutEvent": [
716 "/**",
717 " * Static factory designed to expose `mouseout` events to event",
718 " * handlers that are not necessarily instances of [Element].",
719 " *",
720 " * See [EventStreamProvider] for usage information.",
721 " */"
722 ],
723 "mouseoverEvent": [
724 "/**",
725 " * Static factory designed to expose `mouseover` events to event",
726 " * handlers that are not necessarily instances of [Element].",
727 " *",
728 " * See [EventStreamProvider] for usage information.",
729 " */"
730 ],
731 "mouseupEvent": [
732 "/**",
733 " * Static factory designed to expose `mouseup` events to event",
734 " * handlers that are not necessarily instances of [Element].",
735 " *",
736 " * See [EventStreamProvider] for usage information.",
737 " */"
738 ],
739 "onabort": [
740 "/// Stream of `abort` events handled by this [Element]."
741 ],
742 "onbeforecopy": [
743 "/// Stream of `beforecopy` events handled by this [Element]."
744 ],
745 "onbeforecut": [
746 "/// Stream of `beforecut` events handled by this [Element]."
747 ],
748 "onbeforepaste": [
749 "/// Stream of `beforepaste` events handled by this [Element]."
750 ],
751 "onblur": [
752 "/// Stream of `blur` events handled by this [Element]."
753 ],
754 "onchange": [
755 "/// Stream of `change` events handled by this [Element]."
756 ],
757 "onclick": [
758 "/// Stream of `click` events handled by this [Element]."
759 ],
760 "oncontextmenu": [
761 "/// Stream of `contextmenu` events handled by this [Element]."
762 ],
763 "oncopy": [
764 "/// Stream of `copy` events handled by this [Element]."
765 ],
766 "oncut": [
767 "/// Stream of `cut` events handled by this [Element]."
768 ],
769 "ondblclick": [
770 "/// Stream of `doubleclick` events handled by this [Element]."
771 ],
772 "ondrag": [
773 "/// Stream of `drag` events handled by this [Element]."
774 ],
775 "ondragend": [
776 "/// Stream of `dragend` events handled by this [Element]."
777 ],
778 "ondragenter": [
779 "/// Stream of `dragenter` events handled by this [Element]."
780 ],
781 "ondragleave": [
782 "/// Stream of `dragleave` events handled by this [Element]."
783 ],
784 "ondragover": [
785 "/// Stream of `dragover` events handled by this [Element]."
786 ],
787 "ondragstart": [
788 "/// Stream of `dragstart` events handled by this [Element]."
789 ],
790 "ondrop": [
791 "/// Stream of `drop` events handled by this [Element]."
792 ],
793 "onerror": [
794 "/// Stream of `error` events handled by this [Element]."
795 ],
796 "onfocus": [
797 "/// Stream of `focus` events handled by this [Element]."
798 ],
799 "oninput": [
800 "/// Stream of `input` events handled by this [Element]."
801 ],
802 "oninvalid": [
803 "/// Stream of `invalid` events handled by this [Element]."
804 ],
805 "onkeydown": [
806 "/// Stream of `keydown` events handled by this [Element]."
807 ],
808 "onkeypress": [
809 "/// Stream of `keypress` events handled by this [Element]."
810 ],
811 "onkeyup": [
812 "/// Stream of `keyup` events handled by this [Element]."
813 ],
814 "onload": [
815 "/// Stream of `load` events handled by this [Element]."
816 ],
817 "onmousedown": [
818 "/// Stream of `mousedown` events handled by this [Element]."
819 ],
820 "onmouseenter": [
821 "/// Stream of `mouseenter` events handled by this [Element]."
822 ],
823 "onmouseleave": [
824 "/// Stream of `mouseleave` events handled by this [Element]."
825 ],
826 "onmousemove": [
827 "/// Stream of `mousemove` events handled by this [Element]."
828 ],
829 "onmouseout": [
830 "/// Stream of `mouseout` events handled by this [Element]."
831 ],
832 "onmouseover": [
833 "/// Stream of `mouseover` events handled by this [Element]."
834 ],
835 "onmouseup": [
836 "/// Stream of `mouseup` events handled by this [Element]."
837 ],
838 "onmousewheel": [
839 "/// Stream of `mousewheel` events handled by this [Element]."
840 ],
841 "onpaste": [
842 "/// Stream of `paste` events handled by this [Element]."
843 ],
844 "onreset": [
845 "/// Stream of `reset` events handled by this [Element]."
846 ],
847 "onscroll": [
848 "/// Stream of `scroll` events handled by this [Element]."
849 ],
850 "onsearch": [
851 "/// Stream of `search` events handled by this [Element]."
852 ],
853 "onselect": [
854 "/// Stream of `select` events handled by this [Element]."
855 ],
856 "onselectstart": [
857 "/// Stream of `selectstart` events handled by this [Element]."
858 ],
859 "onsubmit": [
860 "/// Stream of `submit` events handled by this [Element]."
861 ],
862 "ontouchcancel": [
863 "/// Stream of `touchcancel` events handled by this [Element]."
864 ],
865 "ontouchend": [
866 "/// Stream of `touchend` events handled by this [Element]."
867 ],
868 "ontouchenter": [
869 "/// Stream of `touchenter` events handled by this [Element]."
870 ],
871 "ontouchleave": [
872 "/// Stream of `touchleave` events handled by this [Element]."
873 ],
874 "ontouchmove": [
875 "/// Stream of `touchmove` events handled by this [Element]."
876 ],
877 "ontouchstart": [
878 "/// Stream of `touchstart` events handled by this [Element]."
879 ],
880 "ontransitionend": [
881 "/// Stream of `transitionend` events handled by this [Element]."
882 ],
883 "onwebkitfullscreenchange": [
884 "/// Stream of `fullscreenchange` events handled by this [Element]."
885 ],
886 "onwebkitfullscreenerror": [
887 "/// Stream of `fullscreenerror` events handled by this [Element]."
888 ],
889 "pasteEvent": [
890 "/**",
891 " * Static factory designed to expose `paste` events to event",
892 " * handlers that are not necessarily instances of [Element].",
893 " *",
894 " * See [EventStreamProvider] for usage information.",
895 " */"
896 ],
157 "querySelector": [ 897 "querySelector": [
158 "/**", 898 "/**",
159 " * Finds the first descendant element of this element that matches the", 899 " * Finds the first descendant element of this element that matches the",
160 " * specified group of selectors.", 900 " * specified group of selectors.",
161 " *", 901 " *",
162 " * [selectors] should be a string using CSS selector syntax.", 902 " * [selectors] should be a string using CSS selector syntax.",
163 " *", 903 " *",
164 " * // Gets the first descendant with the class 'classname'", 904 " * // Gets the first descendant with the class 'classname'",
165 " * var element = element.querySelector('.className');", 905 " * var element = element.querySelector('.className');",
166 " * // Gets the element with id 'id'", 906 " * // Gets the element with id 'id'",
167 " * var element = element.querySelector('#id');", 907 " * var element = element.querySelector('#id');",
168 " * // Gets the first descendant [ImageElement]", 908 " * // Gets the first descendant [ImageElement]",
169 " * var img = element.querySelector('img');", 909 " * var img = element.querySelector('img');",
170 " *", 910 " *",
171 " * See also:", 911 " * See also:",
172 " *", 912 " *",
173 " * * [CSS Selectors](http://docs.webplatform.org/wiki/css/selectors )", 913 " * * [CSS Selectors](http://docs.webplatform.org/wiki/css/selectors )",
174 " */" 914 " */"
915 ],
916 "resetEvent": [
917 "/**",
918 " * Static factory designed to expose `reset` events to event",
919 " * handlers that are not necessarily instances of [Element].",
920 " *",
921 " * See [EventStreamProvider] for usage information.",
922 " */"
923 ],
924 "scrollEvent": [
925 "/**",
926 " * Static factory designed to expose `scroll` events to event",
927 " * handlers that are not necessarily instances of [Element].",
928 " *",
929 " * See [EventStreamProvider] for usage information.",
930 " */"
931 ],
932 "searchEvent": [
933 "/**",
934 " * Static factory designed to expose `search` events to event",
935 " * handlers that are not necessarily instances of [Element].",
936 " *",
937 " * See [EventStreamProvider] for usage information.",
938 " */"
939 ],
940 "selectEvent": [
941 "/**",
942 " * Static factory designed to expose `select` events to event",
943 " * handlers that are not necessarily instances of [Element].",
944 " *",
945 " * See [EventStreamProvider] for usage information.",
946 " */"
947 ],
948 "selectstartEvent": [
949 "/**",
950 " * Static factory designed to expose `selectstart` events to event" ,
951 " * handlers that are not necessarily instances of [Element].",
952 " *",
953 " * See [EventStreamProvider] for usage information.",
954 " */"
955 ],
956 "submitEvent": [
957 "/**",
958 " * Static factory designed to expose `submit` events to event",
959 " * handlers that are not necessarily instances of [Element].",
960 " *",
961 " * See [EventStreamProvider] for usage information.",
962 " */"
963 ],
964 "touchcancelEvent": [
965 "/**",
966 " * Static factory designed to expose `touchcancel` events to event" ,
967 " * handlers that are not necessarily instances of [Element].",
968 " *",
969 " * See [EventStreamProvider] for usage information.",
970 " */"
971 ],
972 "touchendEvent": [
973 "/**",
974 " * Static factory designed to expose `touchend` events to event",
975 " * handlers that are not necessarily instances of [Element].",
976 " *",
977 " * See [EventStreamProvider] for usage information.",
978 " */"
979 ],
980 "touchenterEvent": [
981 "/**",
982 " * Static factory designed to expose `touchenter` events to event",
983 " * handlers that are not necessarily instances of [Element].",
984 " *",
985 " * See [EventStreamProvider] for usage information.",
986 " */"
987 ],
988 "touchleaveEvent": [
989 "/**",
990 " * Static factory designed to expose `touchleave` events to event",
991 " * handlers that are not necessarily instances of [Element].",
992 " *",
993 " * See [EventStreamProvider] for usage information.",
994 " */"
995 ],
996 "touchmoveEvent": [
997 "/**",
998 " * Static factory designed to expose `touchmove` events to event",
999 " * handlers that are not necessarily instances of [Element].",
1000 " *",
1001 " * See [EventStreamProvider] for usage information.",
1002 " */"
1003 ],
1004 "touchstartEvent": [
1005 "/**",
1006 " * Static factory designed to expose `touchstart` events to event",
1007 " * handlers that are not necessarily instances of [Element].",
1008 " *",
1009 " * See [EventStreamProvider] for usage information.",
1010 " */"
1011 ],
1012 "webkitfullscreenchangeEvent": [
1013 "/**",
1014 " * Static factory designed to expose `fullscreenchange` events to e vent",
1015 " * handlers that are not necessarily instances of [Element].",
1016 " *",
1017 " * See [EventStreamProvider] for usage information.",
1018 " */"
1019 ],
1020 "webkitfullscreenerrorEvent": [
1021 "/**",
1022 " * Static factory designed to expose `fullscreenerror` events to ev ent",
1023 " * handlers that are not necessarily instances of [Element].",
1024 " *",
1025 " * See [EventStreamProvider] for usage information.",
1026 " */"
1027 ]
1028 }
1029 },
1030 "EventSource": {
1031 "members": {
1032 "errorEvent": [
1033 "/**",
1034 " * Static factory designed to expose `error` events to event",
1035 " * handlers that are not necessarily instances of [EventSource].",
1036 " *",
1037 " * See [EventStreamProvider] for usage information.",
1038 " */"
1039 ],
1040 "messageEvent": [
1041 "/**",
1042 " * Static factory designed to expose `message` events to event",
1043 " * handlers that are not necessarily instances of [EventSource].",
1044 " *",
1045 " * See [EventStreamProvider] for usage information.",
1046 " */"
1047 ],
1048 "onerror": [
1049 "/// Stream of `error` events handled by this [EventSource]."
1050 ],
1051 "onmessage": [
1052 "/// Stream of `message` events handled by this [EventSource]."
1053 ],
1054 "onopen": [
1055 "/// Stream of `open` events handled by this [EventSource]."
1056 ],
1057 "openEvent": [
1058 "/**",
1059 " * Static factory designed to expose `open` events to event",
1060 " * handlers that are not necessarily instances of [EventSource].",
1061 " *",
1062 " * See [EventStreamProvider] for usage information.",
1063 " */"
1064 ]
1065 }
1066 },
1067 "FileReader": {
1068 "members": {
1069 "abortEvent": [
1070 "/**",
1071 " * Static factory designed to expose `abort` events to event",
1072 " * handlers that are not necessarily instances of [FileReader].",
1073 " *",
1074 " * See [EventStreamProvider] for usage information.",
1075 " */"
1076 ],
1077 "errorEvent": [
1078 "/**",
1079 " * Static factory designed to expose `error` events to event",
1080 " * handlers that are not necessarily instances of [FileReader].",
1081 " *",
1082 " * See [EventStreamProvider] for usage information.",
1083 " */"
1084 ],
1085 "loadendEvent": [
1086 "/**",
1087 " * Static factory designed to expose `loadend` events to event",
1088 " * handlers that are not necessarily instances of [FileReader].",
1089 " *",
1090 " * See [EventStreamProvider] for usage information.",
1091 " */"
1092 ],
1093 "loadEvent": [
1094 "/**",
1095 " * Static factory designed to expose `load` events to event",
1096 " * handlers that are not necessarily instances of [FileReader].",
1097 " *",
1098 " * See [EventStreamProvider] for usage information.",
1099 " */"
1100 ],
1101 "loadstartEvent": [
1102 "/**",
1103 " * Static factory designed to expose `loadstart` events to event",
1104 " * handlers that are not necessarily instances of [FileReader].",
1105 " *",
1106 " * See [EventStreamProvider] for usage information.",
1107 " */"
1108 ],
1109 "onabort": [
1110 "/// Stream of `abort` events handled by this [FileReader]."
1111 ],
1112 "onerror": [
1113 "/// Stream of `error` events handled by this [FileReader]."
1114 ],
1115 "onload": [
1116 "/// Stream of `load` events handled by this [FileReader]."
1117 ],
1118 "onloadend": [
1119 "/// Stream of `loadend` events handled by this [FileReader]."
1120 ],
1121 "onloadstart": [
1122 "/// Stream of `loadstart` events handled by this [FileReader]."
1123 ],
1124 "onprogress": [
1125 "/// Stream of `progress` events handled by this [FileReader]."
1126 ],
1127 "progressEvent": [
1128 "/**",
1129 " * Static factory designed to expose `progress` events to event",
1130 " * handlers that are not necessarily instances of [FileReader].",
1131 " *",
1132 " * See [EventStreamProvider] for usage information.",
1133 " */"
1134 ]
1135 }
1136 },
1137 "FileWriter": {
1138 "members": {
1139 "abortEvent": [
1140 "/**",
1141 " * Static factory designed to expose `abort` events to event",
1142 " * handlers that are not necessarily instances of [FileWriter].",
1143 " *",
1144 " * See [EventStreamProvider] for usage information.",
1145 " */"
1146 ],
1147 "errorEvent": [
1148 "/**",
1149 " * Static factory designed to expose `error` events to event",
1150 " * handlers that are not necessarily instances of [FileWriter].",
1151 " *",
1152 " * See [EventStreamProvider] for usage information.",
1153 " */"
1154 ],
1155 "onabort": [
1156 "/// Stream of `abort` events handled by this [FileWriter]."
1157 ],
1158 "onerror": [
1159 "/// Stream of `error` events handled by this [FileWriter]."
1160 ],
1161 "onprogress": [
1162 "/// Stream of `progress` events handled by this [FileWriter]."
1163 ],
1164 "onwrite": [
1165 "/// Stream of `write` events handled by this [FileWriter]."
1166 ],
1167 "onwriteend": [
1168 "/// Stream of `writeend` events handled by this [FileWriter]."
1169 ],
1170 "onwritestart": [
1171 "/// Stream of `writestart` events handled by this [FileWriter]."
1172 ],
1173 "progressEvent": [
1174 "/**",
1175 " * Static factory designed to expose `progress` events to event",
1176 " * handlers that are not necessarily instances of [FileWriter].",
1177 " *",
1178 " * See [EventStreamProvider] for usage information.",
1179 " */"
1180 ],
1181 "writeendEvent": [
1182 "/**",
1183 " * Static factory designed to expose `writeend` events to event",
1184 " * handlers that are not necessarily instances of [FileWriter].",
1185 " *",
1186 " * See [EventStreamProvider] for usage information.",
1187 " */"
1188 ],
1189 "writeEvent": [
1190 "/**",
1191 " * Static factory designed to expose `write` events to event",
1192 " * handlers that are not necessarily instances of [FileWriter].",
1193 " *",
1194 " * See [EventStreamProvider] for usage information.",
1195 " */"
1196 ],
1197 "writestartEvent": [
1198 "/**",
1199 " * Static factory designed to expose `writestart` events to event",
1200 " * handlers that are not necessarily instances of [FileWriter].",
1201 " *",
1202 " * See [EventStreamProvider] for usage information.",
1203 " */"
175 ] 1204 ]
176 } 1205 }
177 }, 1206 },
178 "HTMLAreaElement": { 1207 "HTMLAreaElement": {
179 "comment": [ 1208 "comment": [
180 "/**", 1209 "/**",
181 " * DOM Area Element, which links regions of an image map with a hyperli nk.", 1210 " * DOM Area Element, which links regions of an image map with a hyperli nk.",
182 " *", 1211 " *",
183 " * The element can also define an uninteractive region of the map.", 1212 " * The element can also define an uninteractive region of the map.",
184 " *", 1213 " *",
185 " * See also:", 1214 " * See also:",
186 " *", 1215 " *",
187 " * * [<area>](https://developer.mozilla.org/en-US/docs/HTML/Element/are a)", 1216 " * * [<area>](https://developer.mozilla.org/en-US/docs/HTML/Element/are a)",
188 " * on MDN.", 1217 " * on MDN.",
189 " */" 1218 " */"
190 ] 1219 ]
191 }, 1220 },
1221 "HTMLBodyElement": {
1222 "members": {
1223 "blurEvent": [
1224 "/**",
1225 " * Static factory designed to expose `blur` events to event",
1226 " * handlers that are not necessarily instances of [BodyElement].",
1227 " *",
1228 " * See [EventStreamProvider] for usage information.",
1229 " */"
1230 ],
1231 "errorEvent": [
1232 "/**",
1233 " * Static factory designed to expose `error` events to event",
1234 " * handlers that are not necessarily instances of [BodyElement].",
1235 " *",
1236 " * See [EventStreamProvider] for usage information.",
1237 " */"
1238 ],
1239 "focusEvent": [
1240 "/**",
1241 " * Static factory designed to expose `focus` events to event",
1242 " * handlers that are not necessarily instances of [BodyElement].",
1243 " *",
1244 " * See [EventStreamProvider] for usage information.",
1245 " */"
1246 ],
1247 "hashchangeEvent": [
1248 "/**",
1249 " * Static factory designed to expose `hashchange` events to event",
1250 " * handlers that are not necessarily instances of [BodyElement].",
1251 " *",
1252 " * See [EventStreamProvider] for usage information.",
1253 " */"
1254 ],
1255 "loadEvent": [
1256 "/**",
1257 " * Static factory designed to expose `load` events to event",
1258 " * handlers that are not necessarily instances of [BodyElement].",
1259 " *",
1260 " * See [EventStreamProvider] for usage information.",
1261 " */"
1262 ],
1263 "messageEvent": [
1264 "/**",
1265 " * Static factory designed to expose `message` events to event",
1266 " * handlers that are not necessarily instances of [BodyElement].",
1267 " *",
1268 " * See [EventStreamProvider] for usage information.",
1269 " */"
1270 ],
1271 "offlineEvent": [
1272 "/**",
1273 " * Static factory designed to expose `offline` events to event",
1274 " * handlers that are not necessarily instances of [BodyElement].",
1275 " *",
1276 " * See [EventStreamProvider] for usage information.",
1277 " */"
1278 ],
1279 "onblur": [
1280 "/// Stream of `blur` events handled by this [BodyElement]."
1281 ],
1282 "onerror": [
1283 "/// Stream of `error` events handled by this [BodyElement]."
1284 ],
1285 "onfocus": [
1286 "/// Stream of `focus` events handled by this [BodyElement]."
1287 ],
1288 "onhashchange": [
1289 "/// Stream of `hashchange` events handled by this [BodyElement]."
1290 ],
1291 "onlineEvent": [
1292 "/**",
1293 " * Static factory designed to expose `online` events to event",
1294 " * handlers that are not necessarily instances of [BodyElement].",
1295 " *",
1296 " * See [EventStreamProvider] for usage information.",
1297 " */"
1298 ],
1299 "onload": [
1300 "/// Stream of `load` events handled by this [BodyElement]."
1301 ],
1302 "onmessage": [
1303 "/// Stream of `message` events handled by this [BodyElement]."
1304 ],
1305 "onoffline": [
1306 "/// Stream of `offline` events handled by this [BodyElement]."
1307 ],
1308 "ononline": [
1309 "/// Stream of `online` events handled by this [BodyElement]."
1310 ],
1311 "onpopstate": [
1312 "/// Stream of `popstate` events handled by this [BodyElement]."
1313 ],
1314 "onresize": [
1315 "/// Stream of `resize` events handled by this [BodyElement]."
1316 ],
1317 "onstorage": [
1318 "/// Stream of `storage` events handled by this [BodyElement]."
1319 ],
1320 "onunload": [
1321 "/// Stream of `unload` events handled by this [BodyElement]."
1322 ],
1323 "popstateEvent": [
1324 "/**",
1325 " * Static factory designed to expose `popstate` events to event",
1326 " * handlers that are not necessarily instances of [BodyElement].",
1327 " *",
1328 " * See [EventStreamProvider] for usage information.",
1329 " */"
1330 ],
1331 "resizeEvent": [
1332 "/**",
1333 " * Static factory designed to expose `resize` events to event",
1334 " * handlers that are not necessarily instances of [BodyElement].",
1335 " *",
1336 " * See [EventStreamProvider] for usage information.",
1337 " */"
1338 ],
1339 "storageEvent": [
1340 "/**",
1341 " * Static factory designed to expose `storage` events to event",
1342 " * handlers that are not necessarily instances of [BodyElement].",
1343 " *",
1344 " * See [EventStreamProvider] for usage information.",
1345 " */"
1346 ],
1347 "unloadEvent": [
1348 "/**",
1349 " * Static factory designed to expose `unload` events to event",
1350 " * handlers that are not necessarily instances of [BodyElement].",
1351 " *",
1352 " * See [EventStreamProvider] for usage information.",
1353 " */"
1354 ]
1355 }
1356 },
192 "HTMLCanvasElement": { 1357 "HTMLCanvasElement": {
193 "members": { 1358 "members": {
194 "height": [ 1359 "height": [
195 "/// The height of this canvas element in CSS pixels." 1360 "/// The height of this canvas element in CSS pixels."
196 ], 1361 ],
1362 "onwebglcontextlost": [
1363 "/// Stream of `webglcontextlost` events handled by this [CanvasElemen t]."
1364 ],
1365 "onwebglcontextrestored": [
1366 "/// Stream of `webglcontextrestored` events handled by this [CanvasEl ement]."
1367 ],
1368 "webglcontextlostEvent": [
1369 "/**",
1370 " * Static factory designed to expose `webglcontextlost` events to e vent",
1371 " * handlers that are not necessarily instances of [CanvasElement]." ,
1372 " *",
1373 " * See [EventStreamProvider] for usage information.",
1374 " */"
1375 ],
1376 "webglcontextrestoredEvent": [
1377 "/**",
1378 " * Static factory designed to expose `webglcontextrestored` events to event",
1379 " * handlers that are not necessarily instances of [CanvasElement]." ,
1380 " *",
1381 " * See [EventStreamProvider] for usage information.",
1382 " */"
1383 ],
197 "width": [ 1384 "width": [
198 "/// The width of this canvas element in CSS pixels." 1385 "/// The width of this canvas element in CSS pixels."
199 ] 1386 ]
200 } 1387 }
201 }, 1388 },
202 "HTMLDivElement": { 1389 "HTMLDivElement": {
203 "comment": [ 1390 "comment": [
204 "/**", 1391 "/**",
205 " * A generic container for content on an HTML page;", 1392 " * A generic container for content on an HTML page;",
206 " * corresponds to the &lt;div&gt; tag.", 1393 " * corresponds to the &lt;div&gt; tag.",
(...skipping 11 matching lines...) Expand all
218 " * document.body.elements.add(elem);", 1405 " * document.body.elements.add(elem);",
219 " *", 1406 " *",
220 " * See also:", 1407 " * See also:",
221 " *", 1408 " *",
222 " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) fr om W3C.", 1409 " * * [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.", 1410 " * * [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.", 1411 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.",
225 " */" 1412 " */"
226 ] 1413 ]
227 }, 1414 },
1415 "HTMLFormElement": {
1416 "members": {
1417 "autocompleteerrorEvent": [
1418 "/**",
1419 " * Static factory designed to expose `autocompleteerror` events to event",
1420 " * handlers that are not necessarily instances of [FormElement].",
1421 " *",
1422 " * See [EventStreamProvider] for usage information.",
1423 " */"
1424 ],
1425 "autocompleteEvent": [
1426 "/**",
1427 " * Static factory designed to expose `autocomplete` events to event ",
1428 " * handlers that are not necessarily instances of [FormElement].",
1429 " *",
1430 " * See [EventStreamProvider] for usage information.",
1431 " */"
1432 ],
1433 "onautocomplete": [
1434 "/// Stream of `autocomplete` events handled by this [FormElement]."
1435 ],
1436 "onautocompleteerror": [
1437 "/// Stream of `autocompleteerror` events handled by this [FormElement ]."
1438 ]
1439 }
1440 },
228 "HTMLHRElement": { 1441 "HTMLHRElement": {
229 "comment": [ 1442 "comment": [
230 "/**", 1443 "/**",
231 " * An `<hr>` tag.", 1444 " * An `<hr>` tag.",
232 " */" 1445 " */"
233 ] 1446 ]
234 }, 1447 },
1448 "HTMLInputElement": {
1449 "members": {
1450 "onwebkitSpeechChange": [
1451 "/// Stream of `speechchange` events handled by this [InputElement]."
1452 ],
1453 "webkitSpeechChangeEvent": [
1454 "/**",
1455 " * Static factory designed to expose `speechchange` events to event ",
1456 " * handlers that are not necessarily instances of [InputElement].",
1457 " *",
1458 " * See [EventStreamProvider] for usage information.",
1459 " */"
1460 ]
1461 }
1462 },
1463 "HTMLMediaElement": {
1464 "members": {
1465 "canplayEvent": [
1466 "/**",
1467 " * Static factory designed to expose `canplay` events to event",
1468 " * handlers that are not necessarily instances of [MediaElement].",
1469 " *",
1470 " * See [EventStreamProvider] for usage information.",
1471 " */"
1472 ],
1473 "canplaythroughEvent": [
1474 "/**",
1475 " * Static factory designed to expose `canplaythrough` events to eve nt",
1476 " * handlers that are not necessarily instances of [MediaElement].",
1477 " *",
1478 " * See [EventStreamProvider] for usage information.",
1479 " */"
1480 ],
1481 "durationchangeEvent": [
1482 "/**",
1483 " * Static factory designed to expose `durationchange` events to eve nt",
1484 " * handlers that are not necessarily instances of [MediaElement].",
1485 " *",
1486 " * See [EventStreamProvider] for usage information.",
1487 " */"
1488 ],
1489 "emptiedEvent": [
1490 "/**",
1491 " * Static factory designed to expose `emptied` events to event",
1492 " * handlers that are not necessarily instances of [MediaElement].",
1493 " *",
1494 " * See [EventStreamProvider] for usage information.",
1495 " */"
1496 ],
1497 "endedEvent": [
1498 "/**",
1499 " * Static factory designed to expose `ended` events to event",
1500 " * handlers that are not necessarily instances of [MediaElement].",
1501 " *",
1502 " * See [EventStreamProvider] for usage information.",
1503 " */"
1504 ],
1505 "loadeddataEvent": [
1506 "/**",
1507 " * Static factory designed to expose `loadeddata` events to event",
1508 " * handlers that are not necessarily instances of [MediaElement].",
1509 " *",
1510 " * See [EventStreamProvider] for usage information.",
1511 " */"
1512 ],
1513 "loadedmetadataEvent": [
1514 "/**",
1515 " * Static factory designed to expose `loadedmetadata` events to eve nt",
1516 " * handlers that are not necessarily instances of [MediaElement].",
1517 " *",
1518 " * See [EventStreamProvider] for usage information.",
1519 " */"
1520 ],
1521 "loadstartEvent": [
1522 "/**",
1523 " * Static factory designed to expose `loadstart` events to event",
1524 " * handlers that are not necessarily instances of [MediaElement].",
1525 " *",
1526 " * See [EventStreamProvider] for usage information.",
1527 " */"
1528 ],
1529 "oncanplay": [
1530 "/// Stream of `canplay` events handled by this [MediaElement]."
1531 ],
1532 "oncanplaythrough": [
1533 "/// Stream of `canplaythrough` events handled by this [MediaElement]. "
1534 ],
1535 "ondurationchange": [
1536 "/// Stream of `durationchange` events handled by this [MediaElement]. "
1537 ],
1538 "onemptied": [
1539 "/// Stream of `emptied` events handled by this [MediaElement]."
1540 ],
1541 "onended": [
1542 "/// Stream of `ended` events handled by this [MediaElement]."
1543 ],
1544 "onloadeddata": [
1545 "/// Stream of `loadeddata` events handled by this [MediaElement]."
1546 ],
1547 "onloadedmetadata": [
1548 "/// Stream of `loadedmetadata` events handled by this [MediaElement]. "
1549 ],
1550 "onloadstart": [
1551 "/// Stream of `loadstart` events handled by this [MediaElement]."
1552 ],
1553 "onpause": [
1554 "/// Stream of `pause` events handled by this [MediaElement]."
1555 ],
1556 "onplay": [
1557 "/// Stream of `play` events handled by this [MediaElement]."
1558 ],
1559 "onplaying": [
1560 "/// Stream of `playing` events handled by this [MediaElement]."
1561 ],
1562 "onprogress": [
1563 "/// Stream of `progress` events handled by this [MediaElement]."
1564 ],
1565 "onratechange": [
1566 "/// Stream of `ratechange` events handled by this [MediaElement]."
1567 ],
1568 "onseeked": [
1569 "/// Stream of `seeked` events handled by this [MediaElement]."
1570 ],
1571 "onseeking": [
1572 "/// Stream of `seeking` events handled by this [MediaElement]."
1573 ],
1574 "onshow": [
1575 "/// Stream of `show` events handled by this [MediaElement]."
1576 ],
1577 "onstalled": [
1578 "/// Stream of `stalled` events handled by this [MediaElement]."
1579 ],
1580 "onsuspend": [
1581 "/// Stream of `suspend` events handled by this [MediaElement]."
1582 ],
1583 "ontimeupdate": [
1584 "/// Stream of `timeupdate` events handled by this [MediaElement]."
1585 ],
1586 "onvolumechange": [
1587 "/// Stream of `volumechange` events handled by this [MediaElement]."
1588 ],
1589 "onwaiting": [
1590 "/// Stream of `waiting` events handled by this [MediaElement]."
1591 ],
1592 "onwebkitkeyadded": [
1593 "/// Stream of `keyadded` events handled by this [MediaElement]."
1594 ],
1595 "onwebkitkeyerror": [
1596 "/// Stream of `keyerror` events handled by this [MediaElement]."
1597 ],
1598 "onwebkitkeymessage": [
1599 "/// Stream of `keymessage` events handled by this [MediaElement]."
1600 ],
1601 "onwebkitneedkey": [
1602 "/// Stream of `needkey` events handled by this [MediaElement]."
1603 ],
1604 "pauseEvent": [
1605 "/**",
1606 " * Static factory designed to expose `pause` events to event",
1607 " * handlers that are not necessarily instances of [MediaElement].",
1608 " *",
1609 " * See [EventStreamProvider] for usage information.",
1610 " */"
1611 ],
1612 "playEvent": [
1613 "/**",
1614 " * Static factory designed to expose `play` events to event",
1615 " * handlers that are not necessarily instances of [MediaElement].",
1616 " *",
1617 " * See [EventStreamProvider] for usage information.",
1618 " */"
1619 ],
1620 "playingEvent": [
1621 "/**",
1622 " * Static factory designed to expose `playing` events to event",
1623 " * handlers that are not necessarily instances of [MediaElement].",
1624 " *",
1625 " * See [EventStreamProvider] for usage information.",
1626 " */"
1627 ],
1628 "progressEvent": [
1629 "/**",
1630 " * Static factory designed to expose `progress` events to event",
1631 " * handlers that are not necessarily instances of [MediaElement].",
1632 " *",
1633 " * See [EventStreamProvider] for usage information.",
1634 " */"
1635 ],
1636 "ratechangeEvent": [
1637 "/**",
1638 " * Static factory designed to expose `ratechange` events to event",
1639 " * handlers that are not necessarily instances of [MediaElement].",
1640 " *",
1641 " * See [EventStreamProvider] for usage information.",
1642 " */"
1643 ],
1644 "seekedEvent": [
1645 "/**",
1646 " * Static factory designed to expose `seeked` events to event",
1647 " * handlers that are not necessarily instances of [MediaElement].",
1648 " *",
1649 " * See [EventStreamProvider] for usage information.",
1650 " */"
1651 ],
1652 "seekingEvent": [
1653 "/**",
1654 " * Static factory designed to expose `seeking` events to event",
1655 " * handlers that are not necessarily instances of [MediaElement].",
1656 " *",
1657 " * See [EventStreamProvider] for usage information.",
1658 " */"
1659 ],
1660 "showEvent": [
1661 "/**",
1662 " * Static factory designed to expose `show` events to event",
1663 " * handlers that are not necessarily instances of [MediaElement].",
1664 " *",
1665 " * See [EventStreamProvider] for usage information.",
1666 " */"
1667 ],
1668 "stalledEvent": [
1669 "/**",
1670 " * Static factory designed to expose `stalled` events to event",
1671 " * handlers that are not necessarily instances of [MediaElement].",
1672 " *",
1673 " * See [EventStreamProvider] for usage information.",
1674 " */"
1675 ],
1676 "suspendEvent": [
1677 "/**",
1678 " * Static factory designed to expose `suspend` events to event",
1679 " * handlers that are not necessarily instances of [MediaElement].",
1680 " *",
1681 " * See [EventStreamProvider] for usage information.",
1682 " */"
1683 ],
1684 "timeupdateEvent": [
1685 "/**",
1686 " * Static factory designed to expose `timeupdate` events to event",
1687 " * handlers that are not necessarily instances of [MediaElement].",
1688 " *",
1689 " * See [EventStreamProvider] for usage information.",
1690 " */"
1691 ],
1692 "volumechangeEvent": [
1693 "/**",
1694 " * Static factory designed to expose `volumechange` events to event ",
1695 " * handlers that are not necessarily instances of [MediaElement].",
1696 " *",
1697 " * See [EventStreamProvider] for usage information.",
1698 " */"
1699 ],
1700 "waitingEvent": [
1701 "/**",
1702 " * Static factory designed to expose `waiting` events to event",
1703 " * handlers that are not necessarily instances of [MediaElement].",
1704 " *",
1705 " * See [EventStreamProvider] for usage information.",
1706 " */"
1707 ],
1708 "webkitkeyaddedEvent": [
1709 "/**",
1710 " * Static factory designed to expose `keyadded` events to event",
1711 " * handlers that are not necessarily instances of [MediaElement].",
1712 " *",
1713 " * See [EventStreamProvider] for usage information.",
1714 " */"
1715 ],
1716 "webkitkeyerrorEvent": [
1717 "/**",
1718 " * Static factory designed to expose `keyerror` events to event",
1719 " * handlers that are not necessarily instances of [MediaElement].",
1720 " *",
1721 " * See [EventStreamProvider] for usage information.",
1722 " */"
1723 ],
1724 "webkitkeymessageEvent": [
1725 "/**",
1726 " * Static factory designed to expose `keymessage` events to event",
1727 " * handlers that are not necessarily instances of [MediaElement].",
1728 " *",
1729 " * See [EventStreamProvider] for usage information.",
1730 " */"
1731 ],
1732 "webkitneedkeyEvent": [
1733 "/**",
1734 " * Static factory designed to expose `needkey` events to event",
1735 " * handlers that are not necessarily instances of [MediaElement].",
1736 " *",
1737 " * See [EventStreamProvider] for usage information.",
1738 " */"
1739 ]
1740 }
1741 },
235 "HTMLMenuElement": { 1742 "HTMLMenuElement": {
236 "comment": [ 1743 "comment": [
237 "/**", 1744 "/**",
238 " * An HTML <menu> element.", 1745 " * An HTML <menu> element.",
239 " *", 1746 " *",
240 " * A <menu> element represents an unordered list of menu commands.", 1747 " * A <menu> element represents an unordered list of menu commands.",
241 " *", 1748 " *",
242 " * See also:", 1749 " * See also:",
243 " *", 1750 " *",
244 " * * [Menu Element](https://developer.mozilla.org/en-US/docs/HTML/Elem ent/menu) from MDN.", 1751 " * * [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.", 1752 " * * [Menu Element](http://www.w3.org/TR/html5/the-menu-element.html#t he-menu-element) from the W3C.",
246 " */" 1753 " */"
247 ] 1754 ]
248 }, 1755 },
1756 "MediaKeySession": {
1757 "members": {
1758 "onwebkitkeyadded": [
1759 "/// Stream of `keyadded` events handled by this [MediaKeySession]."
1760 ],
1761 "onwebkitkeyerror": [
1762 "/// Stream of `keyerror` events handled by this [MediaKeySession]."
1763 ],
1764 "onwebkitkeymessage": [
1765 "/// Stream of `keymessage` events handled by this [MediaKeySession]."
1766 ],
1767 "webkitkeyaddedEvent": [
1768 "/**",
1769 " * Static factory designed to expose `keyadded` events to event",
1770 " * handlers that are not necessarily instances of [MediaKeySession] .",
1771 " *",
1772 " * See [EventStreamProvider] for usage information.",
1773 " */"
1774 ],
1775 "webkitkeyerrorEvent": [
1776 "/**",
1777 " * Static factory designed to expose `keyerror` events to event",
1778 " * handlers that are not necessarily instances of [MediaKeySession] .",
1779 " *",
1780 " * See [EventStreamProvider] for usage information.",
1781 " */"
1782 ],
1783 "webkitkeymessageEvent": [
1784 "/**",
1785 " * Static factory designed to expose `keymessage` events to event",
1786 " * handlers that are not necessarily instances of [MediaKeySession] .",
1787 " *",
1788 " * See [EventStreamProvider] for usage information.",
1789 " */"
1790 ]
1791 }
1792 },
1793 "MediaStream": {
1794 "members": {
1795 "addtrackEvent": [
1796 "/**",
1797 " * Static factory designed to expose `addtrack` events to event",
1798 " * handlers that are not necessarily instances of [MediaStream].",
1799 " *",
1800 " * See [EventStreamProvider] for usage information.",
1801 " */"
1802 ],
1803 "endedEvent": [
1804 "/**",
1805 " * Static factory designed to expose `ended` events to event",
1806 " * handlers that are not necessarily instances of [MediaStream].",
1807 " *",
1808 " * See [EventStreamProvider] for usage information.",
1809 " */"
1810 ],
1811 "onaddtrack": [
1812 "/// Stream of `addtrack` events handled by this [MediaStream]."
1813 ],
1814 "onended": [
1815 "/// Stream of `ended` events handled by this [MediaStream]."
1816 ],
1817 "onremovetrack": [
1818 "/// Stream of `removetrack` events handled by this [MediaStream]."
1819 ],
1820 "removetrackEvent": [
1821 "/**",
1822 " * Static factory designed to expose `removetrack` events to event" ,
1823 " * handlers that are not necessarily instances of [MediaStream].",
1824 " *",
1825 " * See [EventStreamProvider] for usage information.",
1826 " */"
1827 ]
1828 }
1829 },
1830 "MediaStreamTrack": {
1831 "members": {
1832 "endedEvent": [
1833 "/**",
1834 " * Static factory designed to expose `ended` events to event",
1835 " * handlers that are not necessarily instances of [MediaStreamTrack ].",
1836 " *",
1837 " * See [EventStreamProvider] for usage information.",
1838 " */"
1839 ],
1840 "muteEvent": [
1841 "/**",
1842 " * Static factory designed to expose `mute` events to event",
1843 " * handlers that are not necessarily instances of [MediaStreamTrack ].",
1844 " *",
1845 " * See [EventStreamProvider] for usage information.",
1846 " */"
1847 ],
1848 "onended": [
1849 "/// Stream of `ended` events handled by this [MediaStreamTrack]."
1850 ],
1851 "onmute": [
1852 "/// Stream of `mute` events handled by this [MediaStreamTrack]."
1853 ],
1854 "onunmute": [
1855 "/// Stream of `unmute` events handled by this [MediaStreamTrack]."
1856 ],
1857 "unmuteEvent": [
1858 "/**",
1859 " * Static factory designed to expose `unmute` events to event",
1860 " * handlers that are not necessarily instances of [MediaStreamTrack ].",
1861 " *",
1862 " * See [EventStreamProvider] for usage information.",
1863 " */"
1864 ]
1865 }
1866 },
1867 "MessagePort": {
1868 "members": {
1869 "messageEvent": [
1870 "/**",
1871 " * Static factory designed to expose `message` events to event",
1872 " * handlers that are not necessarily instances of [MessagePort].",
1873 " *",
1874 " * See [EventStreamProvider] for usage information.",
1875 " */"
1876 ],
1877 "onmessage": [
1878 "/// Stream of `message` events handled by this [MessagePort]."
1879 ]
1880 }
1881 },
1882 "MIDIAccess": {
1883 "members": {
1884 "connectEvent": [
1885 "/**",
1886 " * Static factory designed to expose `connect` events to event",
1887 " * handlers that are not necessarily instances of [MidiAccess].",
1888 " *",
1889 " * See [EventStreamProvider] for usage information.",
1890 " */"
1891 ],
1892 "disconnectEvent": [
1893 "/**",
1894 " * Static factory designed to expose `disconnect` events to event",
1895 " * handlers that are not necessarily instances of [MidiAccess].",
1896 " *",
1897 " * See [EventStreamProvider] for usage information.",
1898 " */"
1899 ],
1900 "onconnect": [
1901 "/// Stream of `connect` events handled by this [MidiAccess]."
1902 ],
1903 "ondisconnect": [
1904 "/// Stream of `disconnect` events handled by this [MidiAccess]."
1905 ]
1906 }
1907 },
1908 "MIDIInput": {
1909 "members": {
1910 "midimessageEvent": [
1911 "/**",
1912 " * Static factory designed to expose `midimessage` events to event" ,
1913 " * handlers that are not necessarily instances of [MidiInput].",
1914 " *",
1915 " * See [EventStreamProvider] for usage information.",
1916 " */"
1917 ],
1918 "onmidimessage": [
1919 "/// Stream of `midimessage` events handled by this [MidiInput]."
1920 ]
1921 }
1922 },
1923 "MIDIPort": {
1924 "members": {
1925 "disconnectEvent": [
1926 "/**",
1927 " * Static factory designed to expose `disconnect` events to event",
1928 " * handlers that are not necessarily instances of [MidiPort].",
1929 " *",
1930 " * See [EventStreamProvider] for usage information.",
1931 " */"
1932 ],
1933 "ondisconnect": [
1934 "/// Stream of `disconnect` events handled by this [MidiPort]."
1935 ]
1936 }
1937 },
249 "Node": { 1938 "Node": {
250 "members": { 1939 "members": {
251 "appendChild": [ 1940 "appendChild": [
252 "/**", 1941 "/**",
253 " * Adds a node to the end of the child [nodes] list of this node.", 1942 " * Adds a node to the end of the child [nodes] list of this node.",
254 " *", 1943 " *",
255 " * If the node already exists in this document, it will be removed from its", 1944 " * If the node already exists in this document, it will be removed from its",
256 " * current parent node, then added to this node.", 1945 " * current parent node, then added to this node.",
257 " *", 1946 " *",
258 " * This method is more efficient than `nodes.add`, and is the prefe rred", 1947 " * This method is more efficient than `nodes.add`, and is the prefe rred",
259 " * way of appending a child node.", 1948 " * way of appending a child node.",
260 " */" 1949 " */"
261 ] 1950 ]
262 } 1951 }
263 }, 1952 },
1953 "Notification": {
1954 "members": {
1955 "clickEvent": [
1956 "/**",
1957 " * Static factory designed to expose `click` events to event",
1958 " * handlers that are not necessarily instances of [Notification].",
1959 " *",
1960 " * See [EventStreamProvider] for usage information.",
1961 " */"
1962 ],
1963 "closeEvent": [
1964 "/**",
1965 " * Static factory designed to expose `close` events to event",
1966 " * handlers that are not necessarily instances of [Notification].",
1967 " *",
1968 " * See [EventStreamProvider] for usage information.",
1969 " */"
1970 ],
1971 "displayEvent": [
1972 "/**",
1973 " * Static factory designed to expose `display` events to event",
1974 " * handlers that are not necessarily instances of [Notification].",
1975 " *",
1976 " * See [EventStreamProvider] for usage information.",
1977 " */"
1978 ],
1979 "errorEvent": [
1980 "/**",
1981 " * Static factory designed to expose `error` events to event",
1982 " * handlers that are not necessarily instances of [Notification].",
1983 " *",
1984 " * See [EventStreamProvider] for usage information.",
1985 " */"
1986 ],
1987 "onclick": [
1988 "/// Stream of `click` events handled by this [Notification]."
1989 ],
1990 "onclose": [
1991 "/// Stream of `close` events handled by this [Notification]."
1992 ],
1993 "ondisplay": [
1994 "/// Stream of `display` events handled by this [Notification]."
1995 ],
1996 "onerror": [
1997 "/// Stream of `error` events handled by this [Notification]."
1998 ],
1999 "onshow": [
2000 "/// Stream of `show` events handled by this [Notification]."
2001 ],
2002 "showEvent": [
2003 "/**",
2004 " * Static factory designed to expose `show` events to event",
2005 " * handlers that are not necessarily instances of [Notification].",
2006 " *",
2007 " * See [EventStreamProvider] for usage information.",
2008 " */"
2009 ]
2010 }
2011 },
2012 "Performance": {
2013 "members": {
2014 "onwebkitresourcetimingbufferfull": [
2015 "/// Stream of `resourcetimingbufferfull` events handled by this [Perf ormance]."
2016 ],
2017 "webkitresourcetimingbufferfullEvent": [
2018 "/**",
2019 " * Static factory designed to expose `resourcetimingbufferfull` eve nts to event",
2020 " * handlers that are not necessarily instances of [Performance].",
2021 " *",
2022 " * See [EventStreamProvider] for usage information.",
2023 " */"
2024 ]
2025 }
2026 },
2027 "RTCDataChannel": {
2028 "members": {
2029 "closeEvent": [
2030 "/**",
2031 " * Static factory designed to expose `close` events to event",
2032 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2033 " *",
2034 " * See [EventStreamProvider] for usage information.",
2035 " */"
2036 ],
2037 "errorEvent": [
2038 "/**",
2039 " * Static factory designed to expose `error` events to event",
2040 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2041 " *",
2042 " * See [EventStreamProvider] for usage information.",
2043 " */"
2044 ],
2045 "messageEvent": [
2046 "/**",
2047 " * Static factory designed to expose `message` events to event",
2048 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2049 " *",
2050 " * See [EventStreamProvider] for usage information.",
2051 " */"
2052 ],
2053 "onclose": [
2054 "/// Stream of `close` events handled by this [RtcDataChannel]."
2055 ],
2056 "onerror": [
2057 "/// Stream of `error` events handled by this [RtcDataChannel]."
2058 ],
2059 "onmessage": [
2060 "/// Stream of `message` events handled by this [RtcDataChannel]."
2061 ],
2062 "onopen": [
2063 "/// Stream of `open` events handled by this [RtcDataChannel]."
2064 ],
2065 "openEvent": [
2066 "/**",
2067 " * Static factory designed to expose `open` events to event",
2068 " * handlers that are not necessarily instances of [RtcDataChannel]. ",
2069 " *",
2070 " * See [EventStreamProvider] for usage information.",
2071 " */"
2072 ]
2073 }
2074 },
2075 "RTCDTMFSender": {
2076 "members": {
2077 "ontonechange": [
2078 "/// Stream of `tonechange` events handled by this [RtcDtmfSender]."
2079 ],
2080 "tonechangeEvent": [
2081 "/**",
2082 " * Static factory designed to expose `tonechange` events to event",
2083 " * handlers that are not necessarily instances of [RtcDtmfSender]." ,
2084 " *",
2085 " * See [EventStreamProvider] for usage information.",
2086 " */"
2087 ]
2088 }
2089 },
2090 "RTCPeerConnection": {
2091 "members": {
2092 "addstreamEvent": [
2093 "/**",
2094 " * Static factory designed to expose `addstream` events to event",
2095 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2096 " *",
2097 " * See [EventStreamProvider] for usage information.",
2098 " */"
2099 ],
2100 "datachannelEvent": [
2101 "/**",
2102 " * Static factory designed to expose `datachannel` events to event" ,
2103 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2104 " *",
2105 " * See [EventStreamProvider] for usage information.",
2106 " */"
2107 ],
2108 "icecandidateEvent": [
2109 "/**",
2110 " * Static factory designed to expose `icecandidate` events to event ",
2111 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2112 " *",
2113 " * See [EventStreamProvider] for usage information.",
2114 " */"
2115 ],
2116 "iceconnectionstatechangeEvent": [
2117 "/**",
2118 " * Static factory designed to expose `iceconnectionstatechange` eve nts to event",
2119 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2120 " *",
2121 " * See [EventStreamProvider] for usage information.",
2122 " */"
2123 ],
2124 "negotiationneededEvent": [
2125 "/**",
2126 " * Static factory designed to expose `negotiationneeded` events to event",
2127 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2128 " *",
2129 " * See [EventStreamProvider] for usage information.",
2130 " */"
2131 ],
2132 "onaddstream": [
2133 "/// Stream of `addstream` events handled by this [RtcPeerConnection]. "
2134 ],
2135 "ondatachannel": [
2136 "/// Stream of `datachannel` events handled by this [RtcPeerConnection ]."
2137 ],
2138 "onicecandidate": [
2139 "/// Stream of `icecandidate` events handled by this [RtcPeerConnectio n]."
2140 ],
2141 "oniceconnectionstatechange": [
2142 "/// Stream of `iceconnectionstatechange` events handled by this [RtcP eerConnection]."
2143 ],
2144 "onnegotiationneeded": [
2145 "/// Stream of `negotiationneeded` events handled by this [RtcPeerConn ection]."
2146 ],
2147 "onremovestream": [
2148 "/// Stream of `removestream` events handled by this [RtcPeerConnectio n]."
2149 ],
2150 "onsignalingstatechange": [
2151 "/// Stream of `signalingstatechange` events handled by this [RtcPeerC onnection]."
2152 ],
2153 "removestreamEvent": [
2154 "/**",
2155 " * Static factory designed to expose `removestream` events to event ",
2156 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2157 " *",
2158 " * See [EventStreamProvider] for usage information.",
2159 " */"
2160 ],
2161 "signalingstatechangeEvent": [
2162 "/**",
2163 " * Static factory designed to expose `signalingstatechange` events to event",
2164 " * handlers that are not necessarily instances of [RtcPeerConnectio n].",
2165 " *",
2166 " * See [EventStreamProvider] for usage information.",
2167 " */"
2168 ]
2169 }
2170 },
2171 "SharedWorkerGlobalScope": {
2172 "members": {
2173 "connectEvent": [
2174 "/**",
2175 " * Static factory designed to expose `connect` events to event",
2176 " * handlers that are not necessarily instances of [SharedWorkerGlob alScope].",
2177 " *",
2178 " * See [EventStreamProvider] for usage information.",
2179 " */"
2180 ],
2181 "onconnect": [
2182 "/// Stream of `connect` events handled by this [SharedWorkerGlobalSco pe]."
2183 ]
2184 }
2185 },
2186 "SpeechRecognition": {
2187 "members": {
2188 "audioendEvent": [
2189 "/**",
2190 " * Static factory designed to expose `audioend` events to event",
2191 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2192 " *",
2193 " * See [EventStreamProvider] for usage information.",
2194 " */"
2195 ],
2196 "audiostartEvent": [
2197 "/**",
2198 " * Static factory designed to expose `audiostart` events to event",
2199 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2200 " *",
2201 " * See [EventStreamProvider] for usage information.",
2202 " */"
2203 ],
2204 "endEvent": [
2205 "/**",
2206 " * Static factory designed to expose `end` events to event",
2207 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2208 " *",
2209 " * See [EventStreamProvider] for usage information.",
2210 " */"
2211 ],
2212 "errorEvent": [
2213 "/**",
2214 " * Static factory designed to expose `error` events to event",
2215 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2216 " *",
2217 " * See [EventStreamProvider] for usage information.",
2218 " */"
2219 ],
2220 "nomatchEvent": [
2221 "/**",
2222 " * Static factory designed to expose `nomatch` events to event",
2223 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2224 " *",
2225 " * See [EventStreamProvider] for usage information.",
2226 " */"
2227 ],
2228 "onaudioend": [
2229 "/// Stream of `audioend` events handled by this [SpeechRecognition]."
2230 ],
2231 "onaudiostart": [
2232 "/// Stream of `audiostart` events handled by this [SpeechRecognition] ."
2233 ],
2234 "onend": [
2235 "/// Stream of `end` events handled by this [SpeechRecognition]."
2236 ],
2237 "onerror": [
2238 "/// Stream of `error` events handled by this [SpeechRecognition]."
2239 ],
2240 "onnomatch": [
2241 "/// Stream of `nomatch` events handled by this [SpeechRecognition]."
2242 ],
2243 "onresult": [
2244 "/// Stream of `result` events handled by this [SpeechRecognition]."
2245 ],
2246 "onsoundend": [
2247 "/// Stream of `soundend` events handled by this [SpeechRecognition]."
2248 ],
2249 "onsoundstart": [
2250 "/// Stream of `soundstart` events handled by this [SpeechRecognition] ."
2251 ],
2252 "onspeechend": [
2253 "/// Stream of `speechend` events handled by this [SpeechRecognition]. "
2254 ],
2255 "onspeechstart": [
2256 "/// Stream of `speechstart` events handled by this [SpeechRecognition ]."
2257 ],
2258 "onstart": [
2259 "/// Stream of `start` events handled by this [SpeechRecognition]."
2260 ],
2261 "resultEvent": [
2262 "/**",
2263 " * Static factory designed to expose `result` events to event",
2264 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2265 " *",
2266 " * See [EventStreamProvider] for usage information.",
2267 " */"
2268 ],
2269 "soundendEvent": [
2270 "/**",
2271 " * Static factory designed to expose `soundend` events to event",
2272 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2273 " *",
2274 " * See [EventStreamProvider] for usage information.",
2275 " */"
2276 ],
2277 "soundstartEvent": [
2278 "/**",
2279 " * Static factory designed to expose `soundstart` events to event",
2280 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2281 " *",
2282 " * See [EventStreamProvider] for usage information.",
2283 " */"
2284 ],
2285 "speechendEvent": [
2286 "/**",
2287 " * Static factory designed to expose `speechend` events to event",
2288 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2289 " *",
2290 " * See [EventStreamProvider] for usage information.",
2291 " */"
2292 ],
2293 "speechstartEvent": [
2294 "/**",
2295 " * Static factory designed to expose `speechstart` events to event" ,
2296 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2297 " *",
2298 " * See [EventStreamProvider] for usage information.",
2299 " */"
2300 ],
2301 "startEvent": [
2302 "/**",
2303 " * Static factory designed to expose `start` events to event",
2304 " * handlers that are not necessarily instances of [SpeechRecognitio n].",
2305 " *",
2306 " * See [EventStreamProvider] for usage information.",
2307 " */"
2308 ]
2309 }
2310 },
2311 "SpeechSynthesisUtterance": {
2312 "members": {
2313 "boundaryEvent": [
2314 "/**",
2315 " * Static factory designed to expose `boundary` events to event",
2316 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2317 " *",
2318 " * See [EventStreamProvider] for usage information.",
2319 " */"
2320 ],
2321 "endEvent": [
2322 "/**",
2323 " * Static factory designed to expose `end` events to event",
2324 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2325 " *",
2326 " * See [EventStreamProvider] for usage information.",
2327 " */"
2328 ],
2329 "errorEvent": [
2330 "/**",
2331 " * Static factory designed to expose `error` events to event",
2332 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2333 " *",
2334 " * See [EventStreamProvider] for usage information.",
2335 " */"
2336 ],
2337 "markEvent": [
2338 "/**",
2339 " * Static factory designed to expose `mark` events to event",
2340 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2341 " *",
2342 " * See [EventStreamProvider] for usage information.",
2343 " */"
2344 ],
2345 "onboundary": [
2346 "/// Stream of `boundary` events handled by this [SpeechSynthesisUtter ance]."
2347 ],
2348 "onend": [
2349 "/// Stream of `end` events handled by this [SpeechSynthesisUtterance] ."
2350 ],
2351 "onerror": [
2352 "/// Stream of `error` events handled by this [SpeechSynthesisUtteranc e]."
2353 ],
2354 "onmark": [
2355 "/// Stream of `mark` events handled by this [SpeechSynthesisUtterance ]."
2356 ],
2357 "onpause": [
2358 "/// Stream of `pause` events handled by this [SpeechSynthesisUtteranc e]."
2359 ],
2360 "onresume": [
2361 "/// Stream of `resume` events handled by this [SpeechSynthesisUtteran ce]."
2362 ],
2363 "onstart": [
2364 "/// Stream of `start` events handled by this [SpeechSynthesisUtteranc e]."
2365 ],
2366 "pauseEvent": [
2367 "/**",
2368 " * Static factory designed to expose `pause` events to event",
2369 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2370 " *",
2371 " * See [EventStreamProvider] for usage information.",
2372 " */"
2373 ],
2374 "resumeEvent": [
2375 "/**",
2376 " * Static factory designed to expose `resume` events to event",
2377 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2378 " *",
2379 " * See [EventStreamProvider] for usage information.",
2380 " */"
2381 ],
2382 "startEvent": [
2383 "/**",
2384 " * Static factory designed to expose `start` events to event",
2385 " * handlers that are not necessarily instances of [SpeechSynthesisU tterance].",
2386 " *",
2387 " * See [EventStreamProvider] for usage information.",
2388 " */"
2389 ]
2390 }
2391 },
2392 "TextTrack": {
2393 "members": {
2394 "cuechangeEvent": [
2395 "/**",
2396 " * Static factory designed to expose `cuechange` events to event",
2397 " * handlers that are not necessarily instances of [TextTrack].",
2398 " *",
2399 " * See [EventStreamProvider] for usage information.",
2400 " */"
2401 ],
2402 "oncuechange": [
2403 "/// Stream of `cuechange` events handled by this [TextTrack]."
2404 ]
2405 }
2406 },
2407 "TextTrackCue": {
2408 "members": {
2409 "enterEvent": [
2410 "/**",
2411 " * Static factory designed to expose `enter` events to event",
2412 " * handlers that are not necessarily instances of [TextTrackCue].",
2413 " *",
2414 " * See [EventStreamProvider] for usage information.",
2415 " */"
2416 ],
2417 "exitEvent": [
2418 "/**",
2419 " * Static factory designed to expose `exit` events to event",
2420 " * handlers that are not necessarily instances of [TextTrackCue].",
2421 " *",
2422 " * See [EventStreamProvider] for usage information.",
2423 " */"
2424 ],
2425 "onenter": [
2426 "/// Stream of `enter` events handled by this [TextTrackCue]."
2427 ],
2428 "onexit": [
2429 "/// Stream of `exit` events handled by this [TextTrackCue]."
2430 ]
2431 }
2432 },
2433 "TextTrackList": {
2434 "members": {
2435 "addtrackEvent": [
2436 "/**",
2437 " * Static factory designed to expose `addtrack` events to event",
2438 " * handlers that are not necessarily instances of [TextTrackList]." ,
2439 " *",
2440 " * See [EventStreamProvider] for usage information.",
2441 " */"
2442 ],
2443 "onaddtrack": [
2444 "/// Stream of `addtrack` events handled by this [TextTrackList]."
2445 ]
2446 }
2447 },
264 "WebSocket": { 2448 "WebSocket": {
265 "comment": [ 2449 "comment": [
266 "/**", 2450 "/**",
267 " * Use the WebSocket interface to connect to a WebSocket,", 2451 " * Use the WebSocket interface to connect to a WebSocket,",
268 " * and to send and receive data on that WebSocket.", 2452 " * and to send and receive data on that WebSocket.",
269 " *", 2453 " *",
270 " * To use a WebSocket in your web app, first create a WebSocket object, ", 2454 " * To use a WebSocket in your web app, first create a WebSocket object, ",
271 " * passing the WebSocket URL as an argument to the constructor.", 2455 " * passing the WebSocket URL as an argument to the constructor.",
272 " *", 2456 " *",
273 " * var webSocket = new WebSocket('ws://127.0.0.1:1337/ws');", 2457 " * var webSocket = new WebSocket('ws://127.0.0.1:1337/ws');",
(...skipping 18 matching lines...) Expand all
292 " * as specified by [WebSocketEvents].", 2476 " * as specified by [WebSocketEvents].",
293 " *", 2477 " *",
294 " * For more information, see the", 2478 " * For more information, see the",
295 " * [WebSockets](http://www.dartlang.org/docs/library-tour/#html-websock ets)", 2479 " * [WebSockets](http://www.dartlang.org/docs/library-tour/#html-websock ets)",
296 " * section of the library tour and", 2480 " * section of the library tour and",
297 " * [Introducing WebSockets](http://www.html5rocks.com/en/tutorials/webs ockets/basics/),", 2481 " * [Introducing WebSockets](http://www.html5rocks.com/en/tutorials/webs ockets/basics/),",
298 " * an HTML5Rocks.com tutorial.", 2482 " * an HTML5Rocks.com tutorial.",
299 " */" 2483 " */"
300 ], 2484 ],
301 "members": { 2485 "members": {
2486 "closeEvent": [
2487 "/**",
2488 " * Static factory designed to expose `close` events to event",
2489 " * handlers that are not necessarily instances of [WebSocket].",
2490 " *",
2491 " * See [EventStreamProvider] for usage information.",
2492 " */"
2493 ],
2494 "errorEvent": [
2495 "/**",
2496 " * Static factory designed to expose `error` events to event",
2497 " * handlers that are not necessarily instances of [WebSocket].",
2498 " *",
2499 " * See [EventStreamProvider] for usage information.",
2500 " */"
2501 ],
2502 "messageEvent": [
2503 "/**",
2504 " * Static factory designed to expose `message` events to event",
2505 " * handlers that are not necessarily instances of [WebSocket].",
2506 " *",
2507 " * See [EventStreamProvider] for usage information.",
2508 " */"
2509 ],
2510 "onclose": [
2511 "/// Stream of `close` events handled by this [WebSocket]."
2512 ],
2513 "onerror": [
2514 "/// Stream of `error` events handled by this [WebSocket]."
2515 ],
2516 "onmessage": [
2517 "/// Stream of `message` events handled by this [WebSocket]."
2518 ],
2519 "onopen": [
2520 "/// Stream of `open` events handled by this [WebSocket]."
2521 ],
2522 "openEvent": [
2523 "/**",
2524 " * Static factory designed to expose `open` events to event",
2525 " * handlers that are not necessarily instances of [WebSocket].",
2526 " *",
2527 " * See [EventStreamProvider] for usage information.",
2528 " */"
2529 ],
302 "send": [ 2530 "send": [
303 "/**", 2531 "/**",
304 " * Transmit data to the server over this connection.", 2532 " * Transmit data to the server over this connection.",
305 " *", 2533 " *",
306 " * This method accepts data of type [Blob], [ByteBuffer], [String], or", 2534 " * This method accepts data of type [Blob], [ByteBuffer], [String], or",
307 " * [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendS tring],", 2535 " * [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendS tring],",
308 " * or [sendTypedData], in constrast, only accept data of the specif ied type.", 2536 " * or [sendTypedData], in constrast, only accept data of the specif ied type.",
309 " */" 2537 " */"
310 ] 2538 ]
311 } 2539 }
(...skipping 20 matching lines...) Expand all
332 " * window.console.error('Jeepers!');", 2560 " * window.console.error('Jeepers!');",
333 " *", 2561 " *",
334 " * **Note:** This class represents the current window, whereas [WindowB ase] is", 2562 " * **Note:** This class represents the current window, whereas [WindowB ase] is",
335 " * a representation of any window, including other tabs, windows, and f rames.", 2563 " * a representation of any window, including other tabs, windows, and f rames.",
336 " *", 2564 " *",
337 " * ## Other resources", 2565 " * ## Other resources",
338 " *", 2566 " *",
339 " * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.", 2567 " * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.",
340 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.", 2568 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.",
341 " */" 2569 " */"
342 ] 2570 ],
2571 "members": {
2572 "devicemotionEvent": [
2573 "/**",
2574 " * Static factory designed to expose `devicemotion` events to event ",
2575 " * handlers that are not necessarily instances of [Window].",
2576 " *",
2577 " * See [EventStreamProvider] for usage information.",
2578 " */"
2579 ],
2580 "deviceorientationEvent": [
2581 "/**",
2582 " * Static factory designed to expose `deviceorientation` events to event",
2583 " * handlers that are not necessarily instances of [Window].",
2584 " *",
2585 " * See [EventStreamProvider] for usage information.",
2586 " */"
2587 ],
2588 "DOMContentLoadedEvent": [
2589 "/**",
2590 " * Static factory designed to expose `contentloaded` events to even t",
2591 " * handlers that are not necessarily instances of [Window].",
2592 " *",
2593 " * See [EventStreamProvider] for usage information.",
2594 " */"
2595 ],
2596 "hashchangeEvent": [
2597 "/**",
2598 " * Static factory designed to expose `hashchange` events to event",
2599 " * handlers that are not necessarily instances of [Window].",
2600 " *",
2601 " * See [EventStreamProvider] for usage information.",
2602 " */"
2603 ],
2604 "messageEvent": [
2605 "/**",
2606 " * Static factory designed to expose `message` events to event",
2607 " * handlers that are not necessarily instances of [Window].",
2608 " *",
2609 " * See [EventStreamProvider] for usage information.",
2610 " */"
2611 ],
2612 "offlineEvent": [
2613 "/**",
2614 " * Static factory designed to expose `offline` events to event",
2615 " * handlers that are not necessarily instances of [Window].",
2616 " *",
2617 " * See [EventStreamProvider] for usage information.",
2618 " */"
2619 ],
2620 "onabort": [
2621 "/// Stream of `abort` events handled by this [Window]."
2622 ],
2623 "onblur": [
2624 "/// Stream of `blur` events handled by this [Window]."
2625 ],
2626 "onchange": [
2627 "/// Stream of `change` events handled by this [Window]."
2628 ],
2629 "onclick": [
2630 "/// Stream of `click` events handled by this [Window]."
2631 ],
2632 "oncontextmenu": [
2633 "/// Stream of `contextmenu` events handled by this [Window]."
2634 ],
2635 "ondblclick": [
2636 "/// Stream of `doubleclick` events handled by this [Window]."
2637 ],
2638 "ondevicemotion": [
2639 "/// Stream of `devicemotion` events handled by this [Window]."
2640 ],
2641 "ondeviceorientation": [
2642 "/// Stream of `deviceorientation` events handled by this [Window]."
2643 ],
2644 "onDOMContentLoaded": [
2645 "/// Stream of `contentloaded` events handled by this [Window]."
2646 ],
2647 "ondrag": [
2648 "/// Stream of `drag` events handled by this [Window]."
2649 ],
2650 "ondragend": [
2651 "/// Stream of `dragend` events handled by this [Window]."
2652 ],
2653 "ondragenter": [
2654 "/// Stream of `dragenter` events handled by this [Window]."
2655 ],
2656 "ondragleave": [
2657 "/// Stream of `dragleave` events handled by this [Window]."
2658 ],
2659 "ondragover": [
2660 "/// Stream of `dragover` events handled by this [Window]."
2661 ],
2662 "ondragstart": [
2663 "/// Stream of `dragstart` events handled by this [Window]."
2664 ],
2665 "ondrop": [
2666 "/// Stream of `drop` events handled by this [Window]."
2667 ],
2668 "onerror": [
2669 "/// Stream of `error` events handled by this [Window]."
2670 ],
2671 "onfocus": [
2672 "/// Stream of `focus` events handled by this [Window]."
2673 ],
2674 "onhashchange": [
2675 "/// Stream of `hashchange` events handled by this [Window]."
2676 ],
2677 "oninput": [
2678 "/// Stream of `input` events handled by this [Window]."
2679 ],
2680 "oninvalid": [
2681 "/// Stream of `invalid` events handled by this [Window]."
2682 ],
2683 "onkeydown": [
2684 "/// Stream of `keydown` events handled by this [Window]."
2685 ],
2686 "onkeypress": [
2687 "/// Stream of `keypress` events handled by this [Window]."
2688 ],
2689 "onkeyup": [
2690 "/// Stream of `keyup` events handled by this [Window]."
2691 ],
2692 "onlineEvent": [
2693 "/**",
2694 " * Static factory designed to expose `online` events to event",
2695 " * handlers that are not necessarily instances of [Window].",
2696 " *",
2697 " * See [EventStreamProvider] for usage information.",
2698 " */"
2699 ],
2700 "onload": [
2701 "/// Stream of `load` events handled by this [Window]."
2702 ],
2703 "onmessage": [
2704 "/// Stream of `message` events handled by this [Window]."
2705 ],
2706 "onmousedown": [
2707 "/// Stream of `mousedown` events handled by this [Window]."
2708 ],
2709 "onmouseenter": [
2710 "/// Stream of `mouseenter` events handled by this [Window]."
2711 ],
2712 "onmouseleave": [
2713 "/// Stream of `mouseleave` events handled by this [Window]."
2714 ],
2715 "onmousemove": [
2716 "/// Stream of `mousemove` events handled by this [Window]."
2717 ],
2718 "onmouseout": [
2719 "/// Stream of `mouseout` events handled by this [Window]."
2720 ],
2721 "onmouseover": [
2722 "/// Stream of `mouseover` events handled by this [Window]."
2723 ],
2724 "onmouseup": [
2725 "/// Stream of `mouseup` events handled by this [Window]."
2726 ],
2727 "onmousewheel": [
2728 "/// Stream of `mousewheel` events handled by this [Window]."
2729 ],
2730 "onoffline": [
2731 "/// Stream of `offline` events handled by this [Window]."
2732 ],
2733 "ononline": [
2734 "/// Stream of `online` events handled by this [Window]."
2735 ],
2736 "onpagehide": [
2737 "/// Stream of `pagehide` events handled by this [Window]."
2738 ],
2739 "onpageshow": [
2740 "/// Stream of `pageshow` events handled by this [Window]."
2741 ],
2742 "onpopstate": [
2743 "/// Stream of `popstate` events handled by this [Window]."
2744 ],
2745 "onreset": [
2746 "/// Stream of `reset` events handled by this [Window]."
2747 ],
2748 "onresize": [
2749 "/// Stream of `resize` events handled by this [Window]."
2750 ],
2751 "onscroll": [
2752 "/// Stream of `scroll` events handled by this [Window]."
2753 ],
2754 "onsearch": [
2755 "/// Stream of `search` events handled by this [Window]."
2756 ],
2757 "onselect": [
2758 "/// Stream of `select` events handled by this [Window]."
2759 ],
2760 "onstorage": [
2761 "/// Stream of `storage` events handled by this [Window]."
2762 ],
2763 "onsubmit": [
2764 "/// Stream of `submit` events handled by this [Window]."
2765 ],
2766 "ontouchcancel": [
2767 "/// Stream of `touchcancel` events handled by this [Window]."
2768 ],
2769 "ontouchend": [
2770 "/// Stream of `touchend` events handled by this [Window]."
2771 ],
2772 "ontouchmove": [
2773 "/// Stream of `touchmove` events handled by this [Window]."
2774 ],
2775 "ontouchstart": [
2776 "/// Stream of `touchstart` events handled by this [Window]."
2777 ],
2778 "ontransitionend": [
2779 "/// Stream of `transitionend` events handled by this [Window]."
2780 ],
2781 "onunload": [
2782 "/// Stream of `unload` events handled by this [Window]."
2783 ],
2784 "onwebkitAnimationEnd": [
2785 "/// Stream of `animationend` events handled by this [Window]."
2786 ],
2787 "onwebkitAnimationIteration": [
2788 "/// Stream of `animationiteration` events handled by this [Window]."
2789 ],
2790 "onwebkitAnimationStart": [
2791 "/// Stream of `animationstart` events handled by this [Window]."
2792 ],
2793 "pagehideEvent": [
2794 "/**",
2795 " * Static factory designed to expose `pagehide` events to event",
2796 " * handlers that are not necessarily instances of [Window].",
2797 " *",
2798 " * See [EventStreamProvider] for usage information.",
2799 " */"
2800 ],
2801 "pageshowEvent": [
2802 "/**",
2803 " * Static factory designed to expose `pageshow` events to event",
2804 " * handlers that are not necessarily instances of [Window].",
2805 " *",
2806 " * See [EventStreamProvider] for usage information.",
2807 " */"
2808 ],
2809 "popstateEvent": [
2810 "/**",
2811 " * Static factory designed to expose `popstate` events to event",
2812 " * handlers that are not necessarily instances of [Window].",
2813 " *",
2814 " * See [EventStreamProvider] for usage information.",
2815 " */"
2816 ],
2817 "resizeEvent": [
2818 "/**",
2819 " * Static factory designed to expose `resize` events to event",
2820 " * handlers that are not necessarily instances of [Window].",
2821 " *",
2822 " * See [EventStreamProvider] for usage information.",
2823 " */"
2824 ],
2825 "storageEvent": [
2826 "/**",
2827 " * Static factory designed to expose `storage` events to event",
2828 " * handlers that are not necessarily instances of [Window].",
2829 " *",
2830 " * See [EventStreamProvider] for usage information.",
2831 " */"
2832 ],
2833 "unloadEvent": [
2834 "/**",
2835 " * Static factory designed to expose `unload` events to event",
2836 " * handlers that are not necessarily instances of [Window].",
2837 " *",
2838 " * See [EventStreamProvider] for usage information.",
2839 " */"
2840 ],
2841 "webkitAnimationEndEvent": [
2842 "/**",
2843 " * Static factory designed to expose `animationend` events to event ",
2844 " * handlers that are not necessarily instances of [Window].",
2845 " *",
2846 " * See [EventStreamProvider] for usage information.",
2847 " */"
2848 ],
2849 "webkitAnimationIterationEvent": [
2850 "/**",
2851 " * Static factory designed to expose `animationiteration` events to event",
2852 " * handlers that are not necessarily instances of [Window].",
2853 " *",
2854 " * See [EventStreamProvider] for usage information.",
2855 " */"
2856 ],
2857 "webkitAnimationStartEvent": [
2858 "/**",
2859 " * Static factory designed to expose `animationstart` events to eve nt",
2860 " * handlers that are not necessarily instances of [Window].",
2861 " *",
2862 " * See [EventStreamProvider] for usage information.",
2863 " */"
2864 ]
2865 }
2866 },
2867 "Worker": {
2868 "members": {
2869 "errorEvent": [
2870 "/**",
2871 " * Static factory designed to expose `error` events to event",
2872 " * handlers that are not necessarily instances of [Worker].",
2873 " *",
2874 " * See [EventStreamProvider] for usage information.",
2875 " */"
2876 ],
2877 "messageEvent": [
2878 "/**",
2879 " * Static factory designed to expose `message` events to event",
2880 " * handlers that are not necessarily instances of [Worker].",
2881 " *",
2882 " * See [EventStreamProvider] for usage information.",
2883 " */"
2884 ],
2885 "onerror": [
2886 "/// Stream of `error` events handled by this [Worker]."
2887 ],
2888 "onmessage": [
2889 "/// Stream of `message` events handled by this [Worker]."
2890 ]
2891 }
2892 },
2893 "WorkerGlobalScope": {
2894 "members": {
2895 "errorEvent": [
2896 "/**",
2897 " * Static factory designed to expose `error` events to event",
2898 " * handlers that are not necessarily instances of [WorkerGlobalScop e].",
2899 " *",
2900 " * See [EventStreamProvider] for usage information.",
2901 " */"
2902 ],
2903 "onerror": [
2904 "/// Stream of `error` events handled by this [WorkerGlobalScope]."
2905 ]
2906 }
343 }, 2907 },
344 "XMLHttpRequest": { 2908 "XMLHttpRequest": {
345 "members": { 2909 "members": {
346 "abort": [ 2910 "abort": [
347 "/**", 2911 "/**",
348 " * Stop the current request.", 2912 " * Stop the current request.",
349 " *", 2913 " *",
350 " * The request can only be stopped if readyState is `HEADERS_RECIEV ED` or", 2914 " * 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", 2915 " * `LOADING`. If this method is not in the process of being sent, t he method",
352 " * has no effect.", 2916 " * has no effect.",
(...skipping 13 matching lines...) Expand all
366 ], 2930 ],
367 "getResponseHeader": [ 2931 "getResponseHeader": [
368 "/**", 2932 "/**",
369 " * Return the response header named `header`, or `null` if not foun d.", 2933 " * Return the response header named `header`, or `null` if not foun d.",
370 " *", 2934 " *",
371 " * See also [HTTP response headers](http://en.wikipedia.org/wiki/Li st_of_HTTP_header_fields#Responses)", 2935 " * 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.", 2936 " * for a list of common response headers.",
373 " */" 2937 " */"
374 ], 2938 ],
375 "onreadystatechange": [ 2939 "onreadystatechange": [
2940 "/// Stream of `readystatechange` events handled by this [HttpRequest] .",
376 "/**", 2941 "/**",
377 " * Event listeners to be notified every time the [HttpRequest]", 2942 " * Event listeners to be notified every time the [HttpRequest]",
378 " * object's `readyState` changes values.", 2943 " * object's `readyState` changes values.",
379 " */" 2944 " */"
380 ], 2945 ],
381 "open": [ 2946 "open": [
382 "/**", 2947 "/**",
383 " * Specify the desired `url`, and `method` to use in making the req uest.", 2948 " * Specify the desired `url`, and `method` to use in making the req uest.",
384 " *", 2949 " *",
385 " * By default the request is done asyncronously, with no user or pa ssword", 2950 " * 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>", 2996 " * </tr>",
432 " * <tr>", 2997 " * <tr>",
433 " * <td>3</td> <td>loading</td> <td><code>responseText</code> ho lds some data</td>", 2998 " * <td>3</td> <td>loading</td> <td><code>responseText</code> ho lds some data</td>",
434 " * </tr>", 2999 " * </tr>",
435 " * <tr>", 3000 " * <tr>",
436 " * <td>4</td> <td>done</td> <td>request is complete</td>", 3001 " * <td>4</td> <td>done</td> <td>request is complete</td>",
437 " * </tr>", 3002 " * </tr>",
438 " * </table>", 3003 " * </table>",
439 " */" 3004 " */"
440 ], 3005 ],
3006 "readystatechangeEvent": [
3007 "/**",
3008 " * Static factory designed to expose `readystatechange` events to e vent",
3009 " * handlers that are not necessarily instances of [HttpRequest].",
3010 " *",
3011 " * See [EventStreamProvider] for usage information.",
3012 " */"
3013 ],
441 "response": [ 3014 "response": [
442 "/**", 3015 "/**",
443 " * The data received as a reponse from the request.", 3016 " * The data received as a reponse from the request.",
444 " *", 3017 " *",
445 " * The data could be in the", 3018 " * The data could be in the",
446 " * form of a [String], [ByteBuffer], [Document], [Blob], or json (a lso a", 3019 " * form of a [String], [ByteBuffer], [Document], [Blob], or json (a lso a",
447 " * [String]). `null` indicates request failure.", 3020 " * [String]). `null` indicates request failure.",
448 " */" 3021 " */"
449 ], 3022 ],
450 "responseText": [ 3023 "responseText": [
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 " * 'Request complete ${event.target.reponseText}'));", 3099 " * 'Request complete ${event.target.reponseText}'));",
527 " * request.send();", 3100 " * request.send();",
528 " *", 3101 " *",
529 " * is the (more verbose) equivalent of", 3102 " * is the (more verbose) equivalent of",
530 " *", 3103 " *",
531 " * HttpRequest.getString('http://dartlang.org').then(", 3104 " * HttpRequest.getString('http://dartlang.org').then(",
532 " * (result) => print('Request complete: $result'));", 3105 " * (result) => print('Request complete: $result'));",
533 " */" 3106 " */"
534 ] 3107 ]
535 } 3108 }
3109 },
3110 "XMLHttpRequestEventTarget": {
3111 "members": {
3112 "abortEvent": [
3113 "/**",
3114 " * Static factory designed to expose `abort` events to event",
3115 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3116 " *",
3117 " * See [EventStreamProvider] for usage information.",
3118 " */"
3119 ],
3120 "errorEvent": [
3121 "/**",
3122 " * Static factory designed to expose `error` events to event",
3123 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3124 " *",
3125 " * See [EventStreamProvider] for usage information.",
3126 " */"
3127 ],
3128 "loadendEvent": [
3129 "/**",
3130 " * Static factory designed to expose `loadend` events to event",
3131 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3132 " *",
3133 " * See [EventStreamProvider] for usage information.",
3134 " */"
3135 ],
3136 "loadEvent": [
3137 "/**",
3138 " * Static factory designed to expose `load` events to event",
3139 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3140 " *",
3141 " * See [EventStreamProvider] for usage information.",
3142 " */"
3143 ],
3144 "loadstartEvent": [
3145 "/**",
3146 " * Static factory designed to expose `loadstart` events to event",
3147 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3148 " *",
3149 " * See [EventStreamProvider] for usage information.",
3150 " */"
3151 ],
3152 "onabort": [
3153 "/// Stream of `abort` events handled by this [HttpRequestEventTarget] ."
3154 ],
3155 "onerror": [
3156 "/// Stream of `error` events handled by this [HttpRequestEventTarget] ."
3157 ],
3158 "onload": [
3159 "/// Stream of `load` events handled by this [HttpRequestEventTarget]. "
3160 ],
3161 "onloadend": [
3162 "/// Stream of `loadend` events handled by this [HttpRequestEventTarge t]."
3163 ],
3164 "onloadstart": [
3165 "/// Stream of `loadstart` events handled by this [HttpRequestEventTar get]."
3166 ],
3167 "onprogress": [
3168 "/// Stream of `progress` events handled by this [HttpRequestEventTarg et]."
3169 ],
3170 "ontimeout": [
3171 "/// Stream of `timeout` events handled by this [HttpRequestEventTarge t]."
3172 ],
3173 "progressEvent": [
3174 "/**",
3175 " * Static factory designed to expose `progress` events to event",
3176 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3177 " *",
3178 " * See [EventStreamProvider] for usage information.",
3179 " */"
3180 ],
3181 "timeoutEvent": [
3182 "/**",
3183 " * Static factory designed to expose `timeout` events to event",
3184 " * handlers that are not necessarily instances of [HttpRequestEvent Target].",
3185 " *",
3186 " * See [EventStreamProvider] for usage information.",
3187 " */"
3188 ]
3189 }
536 } 3190 }
537 }, 3191 },
538 "dart.dom.indexed_db": { 3192 "dart.dom.indexed_db": {
539 "IDBDatabase": { 3193 "IDBDatabase": {
540 "comment": [ 3194 "comment": [
541 "/**", 3195 "/**",
542 " * An indexed database object for storing client-side data", 3196 " * An indexed database object for storing client-side data",
543 " * in web apps.", 3197 " * in web apps.",
544 " */" 3198 " */"
545 ] 3199 ],
3200 "members": {
3201 "abortEvent": [
3202 "/**",
3203 " * Static factory designed to expose `abort` events to event",
3204 " * handlers that are not necessarily instances of [Database].",
3205 " *",
3206 " * See [EventStreamProvider] for usage information.",
3207 " */"
3208 ],
3209 "closeEvent": [
3210 "/**",
3211 " * Static factory designed to expose `close` events to event",
3212 " * handlers that are not necessarily instances of [Database].",
3213 " *",
3214 " * See [EventStreamProvider] for usage information.",
3215 " */"
3216 ],
3217 "errorEvent": [
3218 "/**",
3219 " * Static factory designed to expose `error` events to event",
3220 " * handlers that are not necessarily instances of [Database].",
3221 " *",
3222 " * See [EventStreamProvider] for usage information.",
3223 " */"
3224 ],
3225 "onabort": [
3226 "/// Stream of `abort` events handled by this [Database]."
3227 ],
3228 "onclose": [
3229 "/// Stream of `close` events handled by this [Database]."
3230 ],
3231 "onerror": [
3232 "/// Stream of `error` events handled by this [Database]."
3233 ],
3234 "onversionchange": [
3235 "/// Stream of `versionchange` events handled by this [Database]."
3236 ],
3237 "versionchangeEvent": [
3238 "/**",
3239 " * Static factory designed to expose `versionchange` events to even t",
3240 " * handlers that are not necessarily instances of [Database].",
3241 " *",
3242 " * See [EventStreamProvider] for usage information.",
3243 " */"
3244 ]
3245 }
3246 },
3247 "IDBOpenDBRequest": {
3248 "members": {
3249 "blockedEvent": [
3250 "/**",
3251 " * Static factory designed to expose `blocked` events to event",
3252 " * handlers that are not necessarily instances of [OpenDBRequest]." ,
3253 " *",
3254 " * See [EventStreamProvider] for usage information.",
3255 " */"
3256 ],
3257 "onblocked": [
3258 "/// Stream of `blocked` events handled by this [OpenDBRequest]."
3259 ],
3260 "onupgradeneeded": [
3261 "/// Stream of `upgradeneeded` events handled by this [OpenDBRequest]. "
3262 ],
3263 "upgradeneededEvent": [
3264 "/**",
3265 " * Static factory designed to expose `upgradeneeded` events to even t",
3266 " * handlers that are not necessarily instances of [OpenDBRequest]." ,
3267 " *",
3268 " * See [EventStreamProvider] for usage information.",
3269 " */"
3270 ]
3271 }
3272 },
3273 "IDBRequest": {
3274 "members": {
3275 "errorEvent": [
3276 "/**",
3277 " * Static factory designed to expose `error` events to event",
3278 " * handlers that are not necessarily instances of [Request].",
3279 " *",
3280 " * See [EventStreamProvider] for usage information.",
3281 " */"
3282 ],
3283 "onerror": [
3284 "/// Stream of `error` events handled by this [Request]."
3285 ],
3286 "onsuccess": [
3287 "/// Stream of `success` events handled by this [Request]."
3288 ],
3289 "successEvent": [
3290 "/**",
3291 " * Static factory designed to expose `success` events to event",
3292 " * handlers that are not necessarily instances of [Request].",
3293 " *",
3294 " * See [EventStreamProvider] for usage information.",
3295 " */"
3296 ]
3297 }
3298 },
3299 "IDBTransaction": {
3300 "members": {
3301 "abortEvent": [
3302 "/**",
3303 " * Static factory designed to expose `abort` events to event",
3304 " * handlers that are not necessarily instances of [Transaction].",
3305 " *",
3306 " * See [EventStreamProvider] for usage information.",
3307 " */"
3308 ],
3309 "completeEvent": [
3310 "/**",
3311 " * Static factory designed to expose `complete` events to event",
3312 " * handlers that are not necessarily instances of [Transaction].",
3313 " *",
3314 " * See [EventStreamProvider] for usage information.",
3315 " */"
3316 ],
3317 "errorEvent": [
3318 "/**",
3319 " * Static factory designed to expose `error` events to event",
3320 " * handlers that are not necessarily instances of [Transaction].",
3321 " *",
3322 " * See [EventStreamProvider] for usage information.",
3323 " */"
3324 ],
3325 "onabort": [
3326 "/// Stream of `abort` events handled by this [Transaction]."
3327 ],
3328 "oncomplete": [
3329 "/// Stream of `complete` events handled by this [Transaction]."
3330 ],
3331 "onerror": [
3332 "/// Stream of `error` events handled by this [Transaction]."
3333 ]
3334 }
3335 }
3336 },
3337 "dart.dom.svg": {
3338 "SVGElementInstance": {
3339 "members": {
3340 "abortEvent": [
3341 "/**",
3342 " * Static factory designed to expose `abort` events to event",
3343 " * handlers that are not necessarily instances of [ElementInstance] .",
3344 " *",
3345 " * See [EventStreamProvider] for usage information.",
3346 " */"
3347 ],
3348 "beforecopyEvent": [
3349 "/**",
3350 " * Static factory designed to expose `beforecopy` events to event",
3351 " * handlers that are not necessarily instances of [ElementInstance] .",
3352 " *",
3353 " * See [EventStreamProvider] for usage information.",
3354 " */"
3355 ],
3356 "beforecutEvent": [
3357 "/**",
3358 " * Static factory designed to expose `beforecut` events to event",
3359 " * handlers that are not necessarily instances of [ElementInstance] .",
3360 " *",
3361 " * See [EventStreamProvider] for usage information.",
3362 " */"
3363 ],
3364 "beforepasteEvent": [
3365 "/**",
3366 " * Static factory designed to expose `beforepaste` events to event" ,
3367 " * handlers that are not necessarily instances of [ElementInstance] .",
3368 " *",
3369 " * See [EventStreamProvider] for usage information.",
3370 " */"
3371 ],
3372 "blurEvent": [
3373 "/**",
3374 " * Static factory designed to expose `blur` events to event",
3375 " * handlers that are not necessarily instances of [ElementInstance] .",
3376 " *",
3377 " * See [EventStreamProvider] for usage information.",
3378 " */"
3379 ],
3380 "changeEvent": [
3381 "/**",
3382 " * Static factory designed to expose `change` events to event",
3383 " * handlers that are not necessarily instances of [ElementInstance] .",
3384 " *",
3385 " * See [EventStreamProvider] for usage information.",
3386 " */"
3387 ],
3388 "clickEvent": [
3389 "/**",
3390 " * Static factory designed to expose `click` events to event",
3391 " * handlers that are not necessarily instances of [ElementInstance] .",
3392 " *",
3393 " * See [EventStreamProvider] for usage information.",
3394 " */"
3395 ],
3396 "contextmenuEvent": [
3397 "/**",
3398 " * Static factory designed to expose `contextmenu` events to event" ,
3399 " * handlers that are not necessarily instances of [ElementInstance] .",
3400 " *",
3401 " * See [EventStreamProvider] for usage information.",
3402 " */"
3403 ],
3404 "copyEvent": [
3405 "/**",
3406 " * Static factory designed to expose `copy` events to event",
3407 " * handlers that are not necessarily instances of [ElementInstance] .",
3408 " *",
3409 " * See [EventStreamProvider] for usage information.",
3410 " */"
3411 ],
3412 "cutEvent": [
3413 "/**",
3414 " * Static factory designed to expose `cut` events to event",
3415 " * handlers that are not necessarily instances of [ElementInstance] .",
3416 " *",
3417 " * See [EventStreamProvider] for usage information.",
3418 " */"
3419 ],
3420 "dblclickEvent": [
3421 "/**",
3422 " * Static factory designed to expose `doubleclick` events to event" ,
3423 " * handlers that are not necessarily instances of [ElementInstance] .",
3424 " *",
3425 " * See [EventStreamProvider] for usage information.",
3426 " */"
3427 ],
3428 "dragendEvent": [
3429 "/**",
3430 " * Static factory designed to expose `dragend` events to event",
3431 " * handlers that are not necessarily instances of [ElementInstance] .",
3432 " *",
3433 " * See [EventStreamProvider] for usage information.",
3434 " */"
3435 ],
3436 "dragenterEvent": [
3437 "/**",
3438 " * Static factory designed to expose `dragenter` events to event",
3439 " * handlers that are not necessarily instances of [ElementInstance] .",
3440 " *",
3441 " * See [EventStreamProvider] for usage information.",
3442 " */"
3443 ],
3444 "dragEvent": [
3445 "/**",
3446 " * Static factory designed to expose `drag` events to event",
3447 " * handlers that are not necessarily instances of [ElementInstance] .",
3448 " *",
3449 " * See [EventStreamProvider] for usage information.",
3450 " */"
3451 ],
3452 "dragleaveEvent": [
3453 "/**",
3454 " * Static factory designed to expose `dragleave` events to event",
3455 " * handlers that are not necessarily instances of [ElementInstance] .",
3456 " *",
3457 " * See [EventStreamProvider] for usage information.",
3458 " */"
3459 ],
3460 "dragoverEvent": [
3461 "/**",
3462 " * Static factory designed to expose `dragover` events to event",
3463 " * handlers that are not necessarily instances of [ElementInstance] .",
3464 " *",
3465 " * See [EventStreamProvider] for usage information.",
3466 " */"
3467 ],
3468 "dragstartEvent": [
3469 "/**",
3470 " * Static factory designed to expose `dragstart` events to event",
3471 " * handlers that are not necessarily instances of [ElementInstance] .",
3472 " *",
3473 " * See [EventStreamProvider] for usage information.",
3474 " */"
3475 ],
3476 "dropEvent": [
3477 "/**",
3478 " * Static factory designed to expose `drop` events to event",
3479 " * handlers that are not necessarily instances of [ElementInstance] .",
3480 " *",
3481 " * See [EventStreamProvider] for usage information.",
3482 " */"
3483 ],
3484 "errorEvent": [
3485 "/**",
3486 " * Static factory designed to expose `error` events to event",
3487 " * handlers that are not necessarily instances of [ElementInstance] .",
3488 " *",
3489 " * See [EventStreamProvider] for usage information.",
3490 " */"
3491 ],
3492 "focusEvent": [
3493 "/**",
3494 " * Static factory designed to expose `focus` events to event",
3495 " * handlers that are not necessarily instances of [ElementInstance] .",
3496 " *",
3497 " * See [EventStreamProvider] for usage information.",
3498 " */"
3499 ],
3500 "inputEvent": [
3501 "/**",
3502 " * Static factory designed to expose `input` events to event",
3503 " * handlers that are not necessarily instances of [ElementInstance] .",
3504 " *",
3505 " * See [EventStreamProvider] for usage information.",
3506 " */"
3507 ],
3508 "keydownEvent": [
3509 "/**",
3510 " * Static factory designed to expose `keydown` events to event",
3511 " * handlers that are not necessarily instances of [ElementInstance] .",
3512 " *",
3513 " * See [EventStreamProvider] for usage information.",
3514 " */"
3515 ],
3516 "keypressEvent": [
3517 "/**",
3518 " * Static factory designed to expose `keypress` events to event",
3519 " * handlers that are not necessarily instances of [ElementInstance] .",
3520 " *",
3521 " * See [EventStreamProvider] for usage information.",
3522 " */"
3523 ],
3524 "keyupEvent": [
3525 "/**",
3526 " * Static factory designed to expose `keyup` events to event",
3527 " * handlers that are not necessarily instances of [ElementInstance] .",
3528 " *",
3529 " * See [EventStreamProvider] for usage information.",
3530 " */"
3531 ],
3532 "loadEvent": [
3533 "/**",
3534 " * Static factory designed to expose `load` events to event",
3535 " * handlers that are not necessarily instances of [ElementInstance] .",
3536 " *",
3537 " * See [EventStreamProvider] for usage information.",
3538 " */"
3539 ],
3540 "mousedownEvent": [
3541 "/**",
3542 " * Static factory designed to expose `mousedown` events to event",
3543 " * handlers that are not necessarily instances of [ElementInstance] .",
3544 " *",
3545 " * See [EventStreamProvider] for usage information.",
3546 " */"
3547 ],
3548 "mouseenterEvent": [
3549 "/**",
3550 " * Static factory designed to expose `mouseenter` events to event",
3551 " * handlers that are not necessarily instances of [ElementInstance] .",
3552 " *",
3553 " * See [EventStreamProvider] for usage information.",
3554 " */"
3555 ],
3556 "mouseleaveEvent": [
3557 "/**",
3558 " * Static factory designed to expose `mouseleave` events to event",
3559 " * handlers that are not necessarily instances of [ElementInstance] .",
3560 " *",
3561 " * See [EventStreamProvider] for usage information.",
3562 " */"
3563 ],
3564 "mousemoveEvent": [
3565 "/**",
3566 " * Static factory designed to expose `mousemove` events to event",
3567 " * handlers that are not necessarily instances of [ElementInstance] .",
3568 " *",
3569 " * See [EventStreamProvider] for usage information.",
3570 " */"
3571 ],
3572 "mouseoutEvent": [
3573 "/**",
3574 " * Static factory designed to expose `mouseout` events to event",
3575 " * handlers that are not necessarily instances of [ElementInstance] .",
3576 " *",
3577 " * See [EventStreamProvider] for usage information.",
3578 " */"
3579 ],
3580 "mouseoverEvent": [
3581 "/**",
3582 " * Static factory designed to expose `mouseover` events to event",
3583 " * handlers that are not necessarily instances of [ElementInstance] .",
3584 " *",
3585 " * See [EventStreamProvider] for usage information.",
3586 " */"
3587 ],
3588 "mouseupEvent": [
3589 "/**",
3590 " * Static factory designed to expose `mouseup` events to event",
3591 " * handlers that are not necessarily instances of [ElementInstance] .",
3592 " *",
3593 " * See [EventStreamProvider] for usage information.",
3594 " */"
3595 ],
3596 "mousewheelEvent": [
3597 "/**",
3598 " * Static factory designed to expose `mousewheel` events to event",
3599 " * handlers that are not necessarily instances of [ElementInstance] .",
3600 " *",
3601 " * See [EventStreamProvider] for usage information.",
3602 " */"
3603 ],
3604 "onabort": [
3605 "/// Stream of `abort` events handled by this [ElementInstance]."
3606 ],
3607 "onbeforecopy": [
3608 "/// Stream of `beforecopy` events handled by this [ElementInstance]."
3609 ],
3610 "onbeforecut": [
3611 "/// Stream of `beforecut` events handled by this [ElementInstance]."
3612 ],
3613 "onbeforepaste": [
3614 "/// Stream of `beforepaste` events handled by this [ElementInstance]. "
3615 ],
3616 "onblur": [
3617 "/// Stream of `blur` events handled by this [ElementInstance]."
3618 ],
3619 "onchange": [
3620 "/// Stream of `change` events handled by this [ElementInstance]."
3621 ],
3622 "onclick": [
3623 "/// Stream of `click` events handled by this [ElementInstance]."
3624 ],
3625 "oncontextmenu": [
3626 "/// Stream of `contextmenu` events handled by this [ElementInstance]. "
3627 ],
3628 "oncopy": [
3629 "/// Stream of `copy` events handled by this [ElementInstance]."
3630 ],
3631 "oncut": [
3632 "/// Stream of `cut` events handled by this [ElementInstance]."
3633 ],
3634 "ondblclick": [
3635 "/// Stream of `doubleclick` events handled by this [ElementInstance]. "
3636 ],
3637 "ondrag": [
3638 "/// Stream of `drag` events handled by this [ElementInstance]."
3639 ],
3640 "ondragend": [
3641 "/// Stream of `dragend` events handled by this [ElementInstance]."
3642 ],
3643 "ondragenter": [
3644 "/// Stream of `dragenter` events handled by this [ElementInstance]."
3645 ],
3646 "ondragleave": [
3647 "/// Stream of `dragleave` events handled by this [ElementInstance]."
3648 ],
3649 "ondragover": [
3650 "/// Stream of `dragover` events handled by this [ElementInstance]."
3651 ],
3652 "ondragstart": [
3653 "/// Stream of `dragstart` events handled by this [ElementInstance]."
3654 ],
3655 "ondrop": [
3656 "/// Stream of `drop` events handled by this [ElementInstance]."
3657 ],
3658 "onerror": [
3659 "/// Stream of `error` events handled by this [ElementInstance]."
3660 ],
3661 "onfocus": [
3662 "/// Stream of `focus` events handled by this [ElementInstance]."
3663 ],
3664 "oninput": [
3665 "/// Stream of `input` events handled by this [ElementInstance]."
3666 ],
3667 "onkeydown": [
3668 "/// Stream of `keydown` events handled by this [ElementInstance]."
3669 ],
3670 "onkeypress": [
3671 "/// Stream of `keypress` events handled by this [ElementInstance]."
3672 ],
3673 "onkeyup": [
3674 "/// Stream of `keyup` events handled by this [ElementInstance]."
3675 ],
3676 "onload": [
3677 "/// Stream of `load` events handled by this [ElementInstance]."
3678 ],
3679 "onmousedown": [
3680 "/// Stream of `mousedown` events handled by this [ElementInstance]."
3681 ],
3682 "onmouseenter": [
3683 "/// Stream of `mouseenter` events handled by this [ElementInstance]."
3684 ],
3685 "onmouseleave": [
3686 "/// Stream of `mouseleave` events handled by this [ElementInstance]."
3687 ],
3688 "onmousemove": [
3689 "/// Stream of `mousemove` events handled by this [ElementInstance]."
3690 ],
3691 "onmouseout": [
3692 "/// Stream of `mouseout` events handled by this [ElementInstance]."
3693 ],
3694 "onmouseover": [
3695 "/// Stream of `mouseover` events handled by this [ElementInstance]."
3696 ],
3697 "onmouseup": [
3698 "/// Stream of `mouseup` events handled by this [ElementInstance]."
3699 ],
3700 "onmousewheel": [
3701 "/// Stream of `mousewheel` events handled by this [ElementInstance]."
3702 ],
3703 "onpaste": [
3704 "/// Stream of `paste` events handled by this [ElementInstance]."
3705 ],
3706 "onreset": [
3707 "/// Stream of `reset` events handled by this [ElementInstance]."
3708 ],
3709 "onresize": [
3710 "/// Stream of `resize` events handled by this [ElementInstance]."
3711 ],
3712 "onscroll": [
3713 "/// Stream of `scroll` events handled by this [ElementInstance]."
3714 ],
3715 "onsearch": [
3716 "/// Stream of `search` events handled by this [ElementInstance]."
3717 ],
3718 "onselect": [
3719 "/// Stream of `select` events handled by this [ElementInstance]."
3720 ],
3721 "onselectstart": [
3722 "/// Stream of `selectstart` events handled by this [ElementInstance]. "
3723 ],
3724 "onsubmit": [
3725 "/// Stream of `submit` events handled by this [ElementInstance]."
3726 ],
3727 "onunload": [
3728 "/// Stream of `unload` events handled by this [ElementInstance]."
3729 ],
3730 "pasteEvent": [
3731 "/**",
3732 " * Static factory designed to expose `paste` events to event",
3733 " * handlers that are not necessarily instances of [ElementInstance] .",
3734 " *",
3735 " * See [EventStreamProvider] for usage information.",
3736 " */"
3737 ],
3738 "resetEvent": [
3739 "/**",
3740 " * Static factory designed to expose `reset` events to event",
3741 " * handlers that are not necessarily instances of [ElementInstance] .",
3742 " *",
3743 " * See [EventStreamProvider] for usage information.",
3744 " */"
3745 ],
3746 "resizeEvent": [
3747 "/**",
3748 " * Static factory designed to expose `resize` events to event",
3749 " * handlers that are not necessarily instances of [ElementInstance] .",
3750 " *",
3751 " * See [EventStreamProvider] for usage information.",
3752 " */"
3753 ],
3754 "scrollEvent": [
3755 "/**",
3756 " * Static factory designed to expose `scroll` events to event",
3757 " * handlers that are not necessarily instances of [ElementInstance] .",
3758 " *",
3759 " * See [EventStreamProvider] for usage information.",
3760 " */"
3761 ],
3762 "searchEvent": [
3763 "/**",
3764 " * Static factory designed to expose `search` events to event",
3765 " * handlers that are not necessarily instances of [ElementInstance] .",
3766 " *",
3767 " * See [EventStreamProvider] for usage information.",
3768 " */"
3769 ],
3770 "selectEvent": [
3771 "/**",
3772 " * Static factory designed to expose `select` events to event",
3773 " * handlers that are not necessarily instances of [ElementInstance] .",
3774 " *",
3775 " * See [EventStreamProvider] for usage information.",
3776 " */"
3777 ],
3778 "selectstartEvent": [
3779 "/**",
3780 " * Static factory designed to expose `selectstart` events to event" ,
3781 " * handlers that are not necessarily instances of [ElementInstance] .",
3782 " *",
3783 " * See [EventStreamProvider] for usage information.",
3784 " */"
3785 ],
3786 "submitEvent": [
3787 "/**",
3788 " * Static factory designed to expose `submit` events to event",
3789 " * handlers that are not necessarily instances of [ElementInstance] .",
3790 " *",
3791 " * See [EventStreamProvider] for usage information.",
3792 " */"
3793 ],
3794 "unloadEvent": [
3795 "/**",
3796 " * Static factory designed to expose `unload` events to event",
3797 " * handlers that are not necessarily instances of [ElementInstance] .",
3798 " *",
3799 " * See [EventStreamProvider] for usage information.",
3800 " */"
3801 ]
3802 }
546 } 3803 }
547 }, 3804 },
548 "dart.dom.web_audio": { 3805 "dart.dom.web_audio": {
3806 "AudioBufferSourceNode": {
3807 "members": {
3808 "endedEvent": [
3809 "/**",
3810 " * Static factory designed to expose `ended` events to event",
3811 " * handlers that are not necessarily instances of [AudioBufferSourc eNode].",
3812 " *",
3813 " * See [EventStreamProvider] for usage information.",
3814 " */"
3815 ],
3816 "onended": [
3817 "/// Stream of `ended` events handled by this [AudioBufferSourceNode]. "
3818 ]
3819 }
3820 },
3821 "AudioContext": {
3822 "members": {
3823 "completeEvent": [
3824 "/**",
3825 " * Static factory designed to expose `complete` events to event",
3826 " * handlers that are not necessarily instances of [AudioContext].",
3827 " *",
3828 " * See [EventStreamProvider] for usage information.",
3829 " */"
3830 ],
3831 "oncomplete": [
3832 "/// Stream of `complete` events handled by this [AudioContext]."
3833 ]
3834 }
3835 },
3836 "OscillatorNode": {
3837 "members": {
3838 "endedEvent": [
3839 "/**",
3840 " * Static factory designed to expose `ended` events to event",
3841 " * handlers that are not necessarily instances of [OscillatorNode]. ",
3842 " *",
3843 " * See [EventStreamProvider] for usage information.",
3844 " */"
3845 ],
3846 "onended": [
3847 "/// Stream of `ended` events handled by this [OscillatorNode]."
3848 ]
3849 }
3850 },
549 "ScriptProcessorNode": { 3851 "ScriptProcessorNode": {
550 "members": { 3852 "members": {
3853 "audioprocessEvent": [
3854 "/**",
3855 " * Static factory designed to expose `audioprocess` events to event ",
3856 " * handlers that are not necessarily instances of [ScriptProcessorN ode].",
3857 " *",
3858 " * See [EventStreamProvider] for usage information.",
3859 " */"
3860 ],
551 "onaudioprocess": [ 3861 "onaudioprocess": [
3862 "/// Stream of `audioprocess` events handled by this [ScriptProcessorN ode].",
552 "/**", 3863 "/**",
553 " * Get a Stream that fires events when AudioProcessingEvents occur. ", 3864 " * 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", 3865 " * 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", 3866 " * given stream. Converting the returned Stream [asBroadcast] will likely ruin",
556 " * the soft-real-time properties which which these events are fired and can", 3867 " * the soft-real-time properties which which these events are fired and can",
557 " * be processed.", 3868 " * be processed.",
558 " */" 3869 " */"
559 ] 3870 ]
560 } 3871 }
561 } 3872 }
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 " *", 3955 " *",
645 " * [oldVersion] should match the database's current [version] exact ly.", 3956 " * [oldVersion] should match the database's current [version] exact ly.",
646 " *", 3957 " *",
647 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 3958 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
648 " */" 3959 " */"
649 ] 3960 ]
650 } 3961 }
651 } 3962 }
652 } 3963 }
653 } 3964 }
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698