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

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

Issue 1440183003: Update 145 DOM doc links to use proper Markdown; fix 56 broken links (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « sdk/lib/web_sql/dart2js/web_sql_dart2js.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "dart.dom.html": { 2 "dart.dom.html": {
3 "AbstractWorker": { 3 "AbstractWorker": {
4 "members": { 4 "members": {
5 "errorEvent": [ 5 "errorEvent": [
6 "/**", 6 "/**",
7 " * Static factory designed to expose `error` events to event", 7 " * Static factory designed to expose `error` events to event",
8 " * handlers that are not necessarily instances of [AbstractWorker]. ", 8 " * handlers that are not necessarily instances of [AbstractWorker]. ",
9 " *", 9 " *",
10 " * See [EventStreamProvider] for usage information.", 10 " * See [EventStreamProvider] for usage information.",
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 " * // Assign gradients to fill.", 133 " * // Assign gradients to fill.",
134 " * ctx.fillStyle = gradient;", 134 " * ctx.fillStyle = gradient;",
135 " * // Draw a rectangle with a gradient fill.", 135 " * // Draw a rectangle with a gradient fill.",
136 " * ctx.fillRect(0, 0, 600, 600);", 136 " * ctx.fillRect(0, 0, 600, 600);",
137 " * ctx.save();", 137 " * ctx.save();",
138 " * document.body.children.add(canvas);", 138 " * document.body.children.add(canvas);",
139 " *", 139 " *",
140 " * See also:", 140 " * See also:",
141 " *", 141 " *",
142 " * * [CanvasGradient](https://developer.mozilla.org/en-US/docs/DOM/Canv asGradient) from MDN.", 142 " * * [CanvasGradient](https://developer.mozilla.org/en-US/docs/DOM/Canv asGradient) from MDN.",
143 " * * [CanvasGradient](http://www.whatwg.org/specs/web-apps/current-work /multipage/the-canvas-element.html#canvasgradient) from whatwg.", 143 " * * [CanvasGradient](https://html.spec.whatwg.org/multipage/scripting. html#canvasgradient)",
144 " * from WHATWG.",
144 " * * [CanvasGradient](http://www.w3.org/TR/2010/WD-2dcontext-20100304/# canvasgradient) from W3C.", 145 " * * [CanvasGradient](http://www.w3.org/TR/2010/WD-2dcontext-20100304/# canvasgradient) from W3C.",
145 " */" 146 " */"
146 ], 147 ],
147 "members": { 148 "members": {
148 "addColorStop": [ 149 "addColorStop": [
149 "/**", 150 "/**",
150 " * Adds a color stop to this gradient at the offset.", 151 " * Adds a color stop to this gradient at the offset.",
151 " *", 152 " *",
152 " * The [offset] can range between 0.0 and 1.0.", 153 " * The [offset] can range between 0.0 and 1.0.",
153 " *", 154 " *",
(...skipping 23 matching lines...) Expand all
177 " * CanvasPattern pattern = ctx.createPattern(img, 'repeat');", 178 " * CanvasPattern pattern = ctx.createPattern(img, 'repeat');",
178 " * ctx.rect(0, 0, canvas.width, canvas.height);", 179 " * ctx.rect(0, 0, canvas.width, canvas.height);",
179 " * ctx.fillStyle = pattern;", 180 " * ctx.fillStyle = pattern;",
180 " * ctx.fill();", 181 " * ctx.fill();",
181 " * });", 182 " * });",
182 " * img.src = \"images/foo.jpg\";", 183 " * img.src = \"images/foo.jpg\";",
183 " * document.body.children.add(canvas);", 184 " * document.body.children.add(canvas);",
184 " *", 185 " *",
185 " * See also:", 186 " * See also:",
186 " * * [CanvasPattern](https://developer.mozilla.org/en-US/docs/DOM/Canva sPattern) from MDN.", 187 " * * [CanvasPattern](https://developer.mozilla.org/en-US/docs/DOM/Canva sPattern) from MDN.",
187 " * * [CanvasPattern](http://www.whatwg.org/specs/web-apps/current-work/ multipage/the-canvas-element.html#canvaspattern) from whatwg.", 188 " * * [CanvasPattern](https://html.spec.whatwg.org/multipage/scripting.h tml#canvaspattern)",
189 " * from WHATWG.",
188 " * * [CanvasPattern](http://www.w3.org/TR/2010/WD-2dcontext-20100304/#c anvaspattern) from W3C.", 190 " * * [CanvasPattern](http://www.w3.org/TR/2010/WD-2dcontext-20100304/#c anvaspattern) from W3C.",
189 " */" 191 " */"
190 ] 192 ]
191 }, 193 },
192 "CanvasRenderingContext": { 194 "CanvasRenderingContext": {
193 "comment": [ 195 "comment": [
194 "/**", 196 "/**",
195 " * A rendering context for a canvas element.", 197 " * A rendering context for a canvas element.",
196 " *", 198 " *",
197 " * This context is extended by [CanvasRenderingContext2D] and", 199 " * This context is extended by [CanvasRenderingContext2D] and",
198 " * [WebGLRenderingContext].", 200 " * [WebGLRenderingContext].",
199 " */" 201 " */"
200 ], 202 ],
201 "members": { 203 "members": {
202 "canvas": [ 204 "canvas": [
203 "/// Reference to the canvas element to which this context belongs." 205 "/// Reference to the canvas element to which this context belongs."
204 ] 206 ]
205 } 207 }
206 }, 208 },
207 "CanvasRenderingContext2D": { 209 "CanvasRenderingContext2D": {
208 "members": { 210 "members": {
209 "currentPath": [ 211 "currentPath": [
210 "/**", 212 "/**",
211 " * The current default path of this canvas context, if there is one .", 213 " * The current default path of this canvas context, if there is one .",
212 " *", 214 " *",
213 " * ## Other resources", 215 " * ## Other resources",
214 " *", 216 " *",
215 " * * [Current default path]", 217 " * * [Current default",
216 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the -canvas-element.html#current-default-path)", 218 " * path](https://html.spec.whatwg.org/multipage/scripting.html#cu rrent-default-path)",
217 " * from WHATWG.", 219 " * from WHATWG.",
218 " */" 220 " */"
219 ], 221 ],
220 "imageSmoothingEnabled": [ 222 "imageSmoothingEnabled": [
221 "/**", 223 "/**",
222 " * Whether images and patterns on this canvas will be smoothed when this", 224 " * Whether images and patterns on this canvas will be smoothed when this",
223 " * canvas is scaled.", 225 " * canvas is scaled.",
224 " *", 226 " *",
225 " * ## Other resources", 227 " * ## Other resources",
226 " *", 228 " *",
227 " * * [Image smoothing]", 229 " * * [Image",
228 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the -canvas-element.html#image-smoothing)", 230 " * smoothing](https://html.spec.whatwg.org/multipage/scripting.ht ml#image-smoothing)",
229 " * from WHATWG.", 231 " * from WHATWG.",
230 " */" 232 " */"
231 ], 233 ],
232 "webkitBackingStorePixelRatio": [ 234 "webkitBackingStorePixelRatio": [
233 "/**", 235 "/**",
234 " * The ratio between this canvas' backing store dimensions and the canvas'", 236 " * The ratio between this canvas' backing store dimensions and the canvas'",
235 " * logical dimensions.", 237 " * logical dimensions.",
236 " *", 238 " *",
237 " * ## Other resources", 239 " * ## Other resources",
238 " *", 240 " *",
239 " * * [High DPI Canvas tutorial]", 241 " * * [High DPI Canvas",
240 " * (http://www.html5rocks.com/en/tutorials/canvas/hidpi/) from HTML 5Rocks.", 242 " * tutorial](http://www.html5rocks.com/en/tutorials/canvas/hidpi/ )",
243 " * from HTML5Rocks.",
241 " */" 244 " */"
242 ] 245 ]
243 } 246 }
244 }, 247 },
245 "Clipboard": { 248 "Clipboard": {
246 "members": { 249 "members": {
247 "getData": [ 250 "getData": [
248 "/**", 251 "/**",
249 " * Gets the data for the specified type.", 252 " * Gets the data for the specified type.",
250 " *", 253 " *",
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 " * See [EventStreamProvider] for usage information.", 625 " * See [EventStreamProvider] for usage information.",
623 " */" 626 " */"
624 ], 627 ],
625 "dragendEvent": [ 628 "dragendEvent": [
626 "/**", 629 "/**",
627 " * A stream of `dragend` events fired when an element completes a d rag", 630 " * A stream of `dragend` events fired when an element completes a d rag",
628 " * operation.", 631 " * operation.",
629 " *", 632 " *",
630 " * ## Other resources", 633 " * ## Other resources",
631 " *", 634 " *",
632 " * * [Drag and drop sample]", 635 " * * [Drag and drop",
633 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 636 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
634 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 637 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
635 " * from HTML5Rocks.", 638 " * from HTML5Rocks.",
636 " * * [Drag and drop specification]", 639 " * * [Drag and drop",
637 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 640 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
638 " * from WHATWG.", 641 " * from WHATWG.",
639 " */" 642 " */"
640 ], 643 ],
641 "dragenterEvent": [ 644 "dragenterEvent": [
642 "/**", 645 "/**",
643 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged", 646 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged",
644 " * over an element.", 647 " * over an element.",
645 " *", 648 " *",
646 " * ## Other resources", 649 " * ## Other resources",
647 " *", 650 " *",
648 " * * [Drag and drop sample]", 651 " * * [Drag and drop",
649 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 652 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
650 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 653 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
651 " * from HTML5Rocks.", 654 " * from HTML5Rocks.",
652 " * * [Drag and drop specification]", 655 " * * [Drag and drop",
653 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 656 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
654 " * from WHATWG.", 657 " * from WHATWG.",
655 " */" 658 " */"
656 ], 659 ],
657 "dragEvent": [ 660 "dragEvent": [
658 "/**", 661 "/**",
659 " * A stream of `drag` events fired when an element is currently bei ng dragged.", 662 " * A stream of `drag` events fired when an element is currently bei ng dragged.",
660 " *", 663 " *",
661 " * A `drag` event is added to this stream as soon as the drag begin s.", 664 " * A `drag` event is added to this stream as soon as the drag begin s.",
662 " * A `drag` event is also added to this stream at intervals while t he drag", 665 " * A `drag` event is also added to this stream at intervals while t he drag",
663 " * operation is still ongoing.", 666 " * operation is still ongoing.",
664 " *", 667 " *",
665 " * ## Other resources", 668 " * ## Other resources",
666 " *", 669 " *",
667 " * * [Drag and drop sample]", 670 " * * [Drag and drop",
668 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 671 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
669 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 672 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
670 " * from HTML5Rocks.", 673 " * from HTML5Rocks.",
671 " * * [Drag and drop specification]", 674 " * * [Drag and drop",
672 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 675 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
673 " * from WHATWG.", 676 " * from WHATWG.",
674 " */" 677 " */"
675 ], 678 ],
676 "draggable": [ 679 "draggable": [
677 "/**", 680 "/**",
678 " * Indicates whether the element can be dragged and dropped.", 681 " * Indicates whether the element can be dragged and dropped.",
679 " *", 682 " *",
680 " * ## Other resources", 683 " * ## Other resources",
681 " *", 684 " *",
682 " * * [Drag and drop sample]", 685 " * * [Drag and drop",
683 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 686 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
684 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 687 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
685 " * from HTML5Rocks.", 688 " * from HTML5Rocks.",
686 " * * [Drag and drop specification]", 689 " * * [Drag and drop",
687 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 690 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
688 " * from WHATWG.", 691 " * from WHATWG.",
689 " */" 692 " */"
690 ], 693 ],
691 "dragleaveEvent": [ 694 "dragleaveEvent": [
692 "/**", 695 "/**",
693 " * A stream of `dragleave` events fired when an object being dragge d over an", 696 " * A stream of `dragleave` events fired when an object being dragge d over an",
694 " * element leaves the element's target area.", 697 " * element leaves the element's target area.",
695 " *", 698 " *",
696 " * ## Other resources", 699 " * ## Other resources",
697 " *", 700 " *",
698 " * * [Drag and drop sample]", 701 " * * [Drag and drop",
699 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 702 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
700 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 703 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
701 " * from HTML5Rocks.", 704 " * from HTML5Rocks.",
702 " * * [Drag and drop specification]", 705 " * * [Drag and drop",
703 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 706 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
704 " * from WHATWG.", 707 " * from WHATWG.",
705 " */" 708 " */"
706 ], 709 ],
707 "dragoverEvent": [ 710 "dragoverEvent": [
708 "/**", 711 "/**",
709 " * A stream of `dragover` events fired when a dragged object is cur rently", 712 " * A stream of `dragover` events fired when a dragged object is cur rently",
710 " * being dragged over an element.", 713 " * being dragged over an element.",
711 " *", 714 " *",
712 " * ## Other resources", 715 " * ## Other resources",
713 " *", 716 " *",
714 " * * [Drag and drop sample]", 717 " * * [Drag and drop",
715 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 718 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
716 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 719 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
717 " * from HTML5Rocks.", 720 " * from HTML5Rocks.",
718 " * * [Drag and drop specification]", 721 " * * [Drag and drop",
719 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 722 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
720 " * from WHATWG.", 723 " * from WHATWG.",
721 " */" 724 " */"
722 ], 725 ],
723 "dragstartEvent": [ 726 "dragstartEvent": [
724 "/**", 727 "/**",
725 " * A stream of `dragstart` events for a dragged element whose drag has begun.", 728 " * A stream of `dragstart` events for a dragged element whose drag has begun.",
726 " *", 729 " *",
727 " * ## Other resources", 730 " * ## Other resources",
728 " *", 731 " *",
729 " * * [Drag and drop sample]", 732 " * * [Drag and drop",
730 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 733 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
731 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 734 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
732 " * from HTML5Rocks.", 735 " * from HTML5Rocks.",
733 " * * [Drag and drop specification]", 736 " * * [Drag and drop",
734 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 737 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
735 " * from WHATWG.", 738 " * from WHATWG.",
736 " */" 739 " */"
737 ], 740 ],
738 "dropEvent": [ 741 "dropEvent": [
739 "/**", 742 "/**",
740 " * A stream of `drop` events fired when a dragged object is dropped on an", 743 " * A stream of `drop` events fired when a dragged object is dropped on an",
741 " * element.", 744 " * element.",
742 " *", 745 " *",
743 " * ## Other resources", 746 " * ## Other resources",
744 " *", 747 " *",
745 " * * [Drag and drop sample]", 748 " * * [Drag and drop",
746 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 749 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
747 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 750 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
748 " * from HTML5Rocks.", 751 " * from HTML5Rocks.",
749 " * * [Drag and drop specification]", 752 " * * [Drag and drop",
750 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 753 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
751 " * from WHATWG.", 754 " * from WHATWG.",
752 " */" 755 " */"
753 ], 756 ],
754 "errorEvent": [ 757 "errorEvent": [
755 "/**", 758 "/**",
756 " * Static factory designed to expose `error` events to event", 759 " * Static factory designed to expose `error` events to event",
757 " * handlers that are not necessarily instances of [Element].", 760 " * handlers that are not necessarily instances of [Element].",
758 " *", 761 " *",
759 " * See [EventStreamProvider] for usage information.", 762 " * See [EventStreamProvider] for usage information.",
760 " */" 763 " */"
761 ], 764 ],
762 "focusEvent": [ 765 "focusEvent": [
763 "/**", 766 "/**",
764 " * Static factory designed to expose `focus` events to event", 767 " * Static factory designed to expose `focus` events to event",
765 " * handlers that are not necessarily instances of [Element].", 768 " * handlers that are not necessarily instances of [Element].",
766 " *", 769 " *",
767 " * See [EventStreamProvider] for usage information.", 770 " * See [EventStreamProvider] for usage information.",
768 " */" 771 " */"
769 ], 772 ],
770 "getBoundingClientRect": [ 773 "getBoundingClientRect": [
771 "/**", 774 "/**",
772 " * Returns the smallest bounding rectangle that encompasses this el ement's", 775 " * Returns the smallest bounding rectangle that encompasses this el ement's",
773 " * padding, scrollbar, and border.", 776 " * padding, scrollbar, and border.",
774 " *", 777 " *",
775 " * ## Other resources", 778 " * ## Other resources",
776 " *", 779 " *",
777 " * * [Element.getBoundingClientRect]", 780 " * * [Element.getBoundingClientRect](https://developer.mozilla.org/ en-US/docs/Web/API/Element.getBoundingClientRect)",
778 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getBou ndingClientRect)", 781 " * from MDN.",
779 " * from MDN.", 782 " * * [The getBoundingClientRect()",
780 " * * [The getBoundingClientRect() method]", 783 " * method](http://www.w3.org/TR/cssom-view/#the-getclientrects()- and-getboundingclientrect()-methods)",
781 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods)", 784 " * from W3C.",
782 " * from W3C.",
783 " */" 785 " */"
784 ], 786 ],
785 "getClientRects": [ 787 "getClientRects": [
786 "/**", 788 "/**",
787 " * Returns a list of bounding rectangles for each box associated wi th this", 789 " * Returns a list of bounding rectangles for each box associated wi th this",
788 " * element.", 790 " * element.",
789 " *", 791 " *",
790 " * ## Other resources", 792 " * ## Other resources",
791 " *", 793 " *",
792 " * * [Element.getClientRects]", 794 " * * [Element.getClientRects](https://developer.mozilla.org/en-US/d ocs/Web/API/Element.getClientRects)",
793 " * (https://developer.mozilla.org/en-US/docs/Web/API/Element.getCli entRects)", 795 " * from MDN.",
794 " * from MDN.", 796 " * * [The getClientRects()",
795 " * * [The getClientRects() method]", 797 " * method](http://www.w3.org/TR/cssom-view/#the-getclientrects()- and-getboundingclientrect()-methods)",
796 " * (http://www.w3.org/TR/cssom-view/#the-getclientrects-and-getboun dingclientrect-methods)", 798 " * from W3C.",
797 " * from W3C.",
798 " */" 799 " */"
799 ], 800 ],
800 "getDestinationInsertionPoints": [ 801 "getDestinationInsertionPoints": [
801 "/**", 802 "/**",
802 " * Returns a list of shadow DOM insertion points to which this elem ent is", 803 " * Returns a list of shadow DOM insertion points to which this elem ent is",
803 " * distributed.", 804 " * distributed.",
804 " *", 805 " *",
805 " * ## Other resources", 806 " * ## Other resources",
806 " *", 807 " *",
807 " * * [Shadow DOM specification]", 808 " * * [Shadow DOM",
808 " * (https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/i ndex.html)", 809 " * specification](https://dvcs.w3.org/hg/webcomponents/raw-file/t ip/spec/shadow/index.html)",
809 " * from W3C.", 810 " * from W3C.",
810 " */" 811 " */"
811 ], 812 ],
812 "getElementsByClassName": [ 813 "getElementsByClassName": [
813 "/**", 814 "/**",
814 " * Returns a list of nodes with the given class name inside this el ement.", 815 " * Returns a list of nodes with the given class name inside this el ement.",
815 " *", 816 " *",
816 " * ## Other resources", 817 " * ## Other resources",
817 " *", 818 " *",
818 " * * [getElementsByClassName]", 819 " * * [getElementsByClassName](https://developer.mozilla.org/en-US/d ocs/Web/API/document.getElementsByClassName)",
819 " * (https://developer.mozilla.org/en-US/docs/Web/API/document.getEl ementsByClassName)", 820 " * from MDN.",
820 " * from MDN.", 821 " * * [DOM specification](http://www.w3.org/TR/domcore/) from W3C.",
821 " * * [DOM specification]",
822 " * (http://www.w3.org/TR/domcore/) from W3C.",
823 " */" 822 " */"
824 ], 823 ],
825 "hidden": [ 824 "hidden": [
826 "/**", 825 "/**",
827 " * Indicates whether the element is not relevant to the page's curr ent state.", 826 " * Indicates whether the element is not relevant to the page's curr ent state.",
828 " *", 827 " *",
829 " * ## Other resources", 828 " * ## Other resources",
830 " *", 829 " *",
831 " * * [Hidden attribute specification]", 830 " * * [Hidden attribute",
832 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/edi ting.html#the-hidden-attribute)", 831 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#the-hidden-attribute)",
833 " * from WHATWG.", 832 " * from WHATWG.",
834 " */" 833 " */"
835 ], 834 ],
836 "inputEvent": [ 835 "inputEvent": [
837 "/**", 836 "/**",
838 " * Static factory designed to expose `input` events to event", 837 " * Static factory designed to expose `input` events to event",
839 " * handlers that are not necessarily instances of [Element].", 838 " * handlers that are not necessarily instances of [Element].",
840 " *", 839 " *",
841 " * See [EventStreamProvider] for usage information.", 840 " * See [EventStreamProvider] for usage information.",
842 " */" 841 " */"
843 ], 842 ],
844 "inputMethodContext": [ 843 "inputMethodContext": [
845 "/**", 844 "/**",
846 " * The current state of IME composition.", 845 " * The current state of IME composition.",
847 " *", 846 " *",
848 " * ## Other resources", 847 " * ## Other resources",
849 " *", 848 " *",
850 " * * [Input method editor specification]", 849 " * * [Input method editor",
851 " * (http://www.w3.org/TR/ime-api/) from W3C.", 850 " * specification](http://www.w3.org/TR/ime-api/) from W3C.",
852 " */" 851 " */"
853 ], 852 ],
854 "invalidEvent": [ 853 "invalidEvent": [
855 "/**", 854 "/**",
856 " * Static factory designed to expose `invalid` events to event", 855 " * Static factory designed to expose `invalid` events to event",
857 " * handlers that are not necessarily instances of [Element].", 856 " * handlers that are not necessarily instances of [Element].",
858 " *", 857 " *",
859 " * See [EventStreamProvider] for usage information.", 858 " * See [EventStreamProvider] for usage information.",
860 " */" 859 " */"
861 ], 860 ],
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 "ondrag": [ 982 "ondrag": [
984 "/**", 983 "/**",
985 " * A stream of `drag` events fired when this element currently bein g dragged.", 984 " * A stream of `drag` events fired when this element currently bein g dragged.",
986 " *", 985 " *",
987 " * A `drag` event is added to this stream as soon as the drag begin s.", 986 " * A `drag` event is added to this stream as soon as the drag begin s.",
988 " * A `drag` event is also added to this stream at intervals while t he drag", 987 " * A `drag` event is also added to this stream at intervals while t he drag",
989 " * operation is still ongoing.", 988 " * operation is still ongoing.",
990 " *", 989 " *",
991 " * ## Other resources", 990 " * ## Other resources",
992 " *", 991 " *",
993 " * * [Drag and drop sample]", 992 " * * [Drag and drop",
994 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 993 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
995 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 994 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
996 " * from HTML5Rocks.", 995 " * from HTML5Rocks.",
997 " * * [Drag and drop specification]", 996 " * * [Drag and drop",
998 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 997 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
999 " * from WHATWG.", 998 " * from WHATWG.",
1000 " */" 999 " */"
1001 ], 1000 ],
1002 "ondragend": [ 1001 "ondragend": [
1003 "/**", 1002 "/**",
1004 " * A stream of `dragend` events fired when this element completes a drag", 1003 " * A stream of `dragend` events fired when this element completes a drag",
1005 " * operation.", 1004 " * operation.",
1006 " *", 1005 " *",
1007 " * ## Other resources", 1006 " * ## Other resources",
1008 " *", 1007 " *",
1009 " * * [Drag and drop sample]", 1008 " * * [Drag and drop",
1010 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1009 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1011 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1010 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1012 " * from HTML5Rocks.", 1011 " * from HTML5Rocks.",
1013 " * * [Drag and drop specification]", 1012 " * * [Drag and drop",
1014 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1013 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1015 " * from WHATWG.", 1014 " * from WHATWG.",
1016 " */" 1015 " */"
1017 ], 1016 ],
1018 "ondragenter": [ 1017 "ondragenter": [
1019 "/**", 1018 "/**",
1020 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged", 1019 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged",
1021 " * over this element.", 1020 " * over this element.",
1022 " *", 1021 " *",
1023 " * ## Other resources", 1022 " * ## Other resources",
1024 " *", 1023 " *",
1025 " * * [Drag and drop sample]", 1024 " * * [Drag and drop",
1026 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1025 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1027 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1026 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1028 " * from HTML5Rocks.", 1027 " * from HTML5Rocks.",
1029 " * * [Drag and drop specification]", 1028 " * * [Drag and drop",
1030 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1029 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1031 " * from WHATWG.", 1030 " * from WHATWG.",
1032 " */" 1031 " */"
1033 ], 1032 ],
1034 "ondragleave": [ 1033 "ondragleave": [
1035 "/**", 1034 "/**",
1036 " * A stream of `dragleave` events fired when an object being dragge d over this", 1035 " * A stream of `dragleave` events fired when an object being dragge d over this",
1037 " * element leaves this element's target area.", 1036 " * element leaves this element's target area.",
1038 " *", 1037 " *",
1039 " * ## Other resources", 1038 " * ## Other resources",
1040 " *", 1039 " *",
1041 " * * [Drag and drop sample]", 1040 " * * [Drag and drop",
1042 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1041 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1043 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1042 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1044 " * from HTML5Rocks.", 1043 " * from HTML5Rocks.",
1045 " * * [Drag and drop specification]", 1044 " * * [Drag and drop",
1046 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1045 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1047 " * from WHATWG.", 1046 " * from WHATWG.",
1048 " */" 1047 " */"
1049 ], 1048 ],
1050 "ondragover": [ 1049 "ondragover": [
1051 "/**", 1050 "/**",
1052 " * A stream of `dragover` events fired when a dragged object is cur rently", 1051 " * A stream of `dragover` events fired when a dragged object is cur rently",
1053 " * being dragged over this element.", 1052 " * being dragged over this element.",
1054 " *", 1053 " *",
1055 " * ## Other resources", 1054 " * ## Other resources",
1056 " *", 1055 " *",
1057 " * * [Drag and drop sample]", 1056 " * * [Drag and drop",
1058 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1057 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1059 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1058 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1060 " * from HTML5Rocks.", 1059 " * from HTML5Rocks.",
1061 " * * [Drag and drop specification]", 1060 " * * [Drag and drop",
1062 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1061 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1063 " * from WHATWG.", 1062 " * from WHATWG.",
1064 " */" 1063 " */"
1065 ], 1064 ],
1066 "ondragstart": [ 1065 "ondragstart": [
1067 "/**", 1066 "/**",
1068 " * A stream of `dragstart` events fired when this element starts be ing", 1067 " * A stream of `dragstart` events fired when this element starts be ing",
1069 " * dragged.", 1068 " * dragged.",
1070 " *", 1069 " *",
1071 " * ## Other resources", 1070 " * ## Other resources",
1072 " *", 1071 " *",
1073 " * * [Drag and drop sample]", 1072 " * * [Drag and drop",
1074 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1073 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1075 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1074 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1076 " * from HTML5Rocks.", 1075 " * from HTML5Rocks.",
1077 " * * [Drag and drop specification]", 1076 " * * [Drag and drop",
1078 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1077 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1079 " * from WHATWG.", 1078 " * from WHATWG.",
1080 " */" 1079 " */"
1081 ], 1080 ],
1082 "ondrop": [ 1081 "ondrop": [
1083 "/**", 1082 "/**",
1084 " * A stream of `drop` events fired when a dragged object is dropped on this", 1083 " * A stream of `drop` events fired when a dragged object is dropped on this",
1085 " * element.", 1084 " * element.",
1086 " *", 1085 " *",
1087 " * ## Other resources", 1086 " * ## Other resources",
1088 " *", 1087 " *",
1089 " * * [Drag and drop sample]", 1088 " * * [Drag and drop",
1090 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1089 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1091 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1090 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1092 " * from HTML5Rocks.", 1091 " * from HTML5Rocks.",
1093 " * * [Drag and drop specification]", 1092 " * * [Drag and drop",
1094 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1093 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1095 " * from WHATWG.", 1094 " * from WHATWG.",
1096 " */" 1095 " */"
1097 ], 1096 ],
1098 "onerror": [ 1097 "onerror": [
1099 "/// Stream of `error` events handled by this [Element]." 1098 "/// Stream of `error` events handled by this [Element]."
1100 ], 1099 ],
1101 "onfocus": [ 1100 "onfocus": [
1102 "/// Stream of `focus` events handled by this [Element]." 1101 "/// Stream of `focus` events handled by this [Element]."
1103 ], 1102 ],
1104 "oninput": [ 1103 "oninput": [
1105 "/// Stream of `input` events handled by this [Element]." 1104 "/// Stream of `input` events handled by this [Element]."
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 " */" 1199 " */"
1201 ], 1200 ],
1202 "pseudo": [ 1201 "pseudo": [
1203 "/**", 1202 "/**",
1204 " * The name of this element's custom pseudo-element.", 1203 " * The name of this element's custom pseudo-element.",
1205 " *", 1204 " *",
1206 " * This value must begin with an x and a hyphen, `x-`, to be consid ered valid.", 1205 " * This value must begin with an x and a hyphen, `x-`, to be consid ered valid.",
1207 " *", 1206 " *",
1208 " * ## Other resources", 1207 " * ## Other resources",
1209 " *", 1208 " *",
1210 " * * [Using custom pseudo elements]", 1209 " * * [Using custom pseudo",
1211 " * (http://www.html5rocks.com/en/tutorials/webcomponents/shadowdom- 201/#toc-custom-pseduo)", 1210 " * elements](http://www.html5rocks.com/en/tutorials/webcomponents /shadowdom-201/#toc-custom-pseduo)",
1212 " * from HTML5Rocks.", 1211 " * from HTML5Rocks.",
1213 " * * [Custom pseudo-elements]", 1212 " * * [Custom pseudo-elements](http://www.w3.org/TR/shadow-dom/#cust om-pseudo-elements)",
1214 " * (http://www.w3.org/TR/shadow-dom/#custom-pseudo-elements) from W 3C.", 1213 " * from W3C.",
1215 " */" 1214 " */"
1216 ], 1215 ],
1217 "querySelector": [ 1216 "querySelector": [
1218 "/**", 1217 "/**",
1219 " * Finds the first descendant element of this element that matches the", 1218 " * Finds the first descendant element of this element that matches the",
1220 " * specified group of selectors.", 1219 " * specified group of selectors.",
1221 " *", 1220 " *",
1222 " * [selectors] should be a string using CSS selector syntax.", 1221 " * [selectors] should be a string using CSS selector syntax.",
1223 " *", 1222 " *",
1224 " * // Gets the first descendant with the class 'classname'", 1223 " * // Gets the first descendant with the class 'classname'",
(...skipping 14 matching lines...) Expand all
1239 " *", 1238 " *",
1240 " * See [EventStreamProvider] for usage information.", 1239 " * See [EventStreamProvider] for usage information.",
1241 " */" 1240 " */"
1242 ], 1241 ],
1243 "scrollByLines": [ 1242 "scrollByLines": [
1244 "/**", 1243 "/**",
1245 " * Scrolls the element by a number of lines.", 1244 " * Scrolls the element by a number of lines.",
1246 " *", 1245 " *",
1247 " * ## Other resources", 1246 " * ## Other resources",
1248 " *", 1247 " *",
1249 " * * [scrollByLines]", 1248 " * * [scrollByLines](http://docs.webplatform.org/wiki/dom/methods/s crollByLines)",
1250 " * (http://docs.webplatform.org/wiki/dom/methods/scrollByLines) fro m WebPlatform.org.", 1249 " * from WebPlatform.org.",
1251 " */" 1250 " */"
1252 ], 1251 ],
1253 "scrollByPages": [ 1252 "scrollByPages": [
1254 "/**", 1253 "/**",
1255 " * Scrolls the element by a number of pages.", 1254 " * Scrolls the element by a number of pages.",
1256 " *", 1255 " *",
1257 " * ## Other resources", 1256 " * ## Other resources",
1258 " *", 1257 " *",
1259 " * * [scrollByPages]", 1258 " * * [scrollByPages](http://docs.webplatform.org/wiki/dom/methods/s crollByPages) from WebPlatform.org.",
1260 " * (http://docs.webplatform.org/wiki/dom/methods/scrollByPages) fro m WebPlatform.org.",
1261 " */" 1259 " */"
1262 ], 1260 ],
1263 "scrollEvent": [ 1261 "scrollEvent": [
1264 "/**", 1262 "/**",
1265 " * Static factory designed to expose `scroll` events to event", 1263 " * Static factory designed to expose `scroll` events to event",
1266 " * handlers that are not necessarily instances of [Element].", 1264 " * handlers that are not necessarily instances of [Element].",
1267 " *", 1265 " *",
1268 " * See [EventStreamProvider] for usage information.", 1266 " * See [EventStreamProvider] for usage information.",
1269 " */" 1267 " */"
1270 ], 1268 ],
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
1348 " * See [EventStreamProvider] for usage information.", 1346 " * See [EventStreamProvider] for usage information.",
1349 " */" 1347 " */"
1350 ], 1348 ],
1351 "translate": [ 1349 "translate": [
1352 "/**", 1350 "/**",
1353 " * Specifies whether this element's text content changes when the p age is", 1351 " * Specifies whether this element's text content changes when the p age is",
1354 " * localized.", 1352 " * localized.",
1355 " *", 1353 " *",
1356 " * ## Other resources", 1354 " * ## Other resources",
1357 " *", 1355 " *",
1358 " * * [The translate attribute]", 1356 " * * [The translate",
1359 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/ele ments.html#the-translate-attribute)", 1357 " * attribute](https://html.spec.whatwg.org/multipage/dom.html#the -translate-attribute)",
1360 " * from WHATWG.", 1358 " * from WHATWG.",
1361 " */" 1359 " */"
1362 ], 1360 ],
1363 "webkitdropzone": [ 1361 "webkitdropzone": [
1364 "/**", 1362 "/**",
1365 " * A set of space-separated keywords that specify what kind of data this", 1363 " * A set of space-separated keywords that specify what kind of data this",
1366 " * Element accepts on drop and what to do with that data.", 1364 " * Element accepts on drop and what to do with that data.",
1367 " *", 1365 " *",
1368 " * ## Other resources", 1366 " * ## Other resources",
1369 " *", 1367 " *",
1370 " * * [Drag and drop sample]", 1368 " * * [Drag and drop",
1371 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)", 1369 " * sample](https://github.com/dart-lang/dart-samples/tree/master/ html5/web/dnd/basics)",
1372 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)", 1370 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials /dnd/basics/)",
1373 " * from HTML5Rocks.", 1371 " * from HTML5Rocks.",
1374 " * * [Drag and drop specification]", 1372 " * * [Drag and drop",
1375 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)", 1373 " * specification](https://html.spec.whatwg.org/multipage/interact ion.html#dnd)",
1376 " * from WHATWG.", 1374 " * from WHATWG.",
1377 " */" 1375 " */"
1378 ], 1376 ],
1379 "webkitfullscreenchangeEvent": [ 1377 "webkitfullscreenchangeEvent": [
1380 "/**", 1378 "/**",
1381 " * Static factory designed to expose `fullscreenchange` events to e vent", 1379 " * Static factory designed to expose `fullscreenchange` events to e vent",
1382 " * handlers that are not necessarily instances of [Element].", 1380 " * handlers that are not necessarily instances of [Element].",
1383 " *", 1381 " *",
1384 " * See [EventStreamProvider] for usage information.", 1382 " * See [EventStreamProvider] for usage information.",
1385 " */" 1383 " */"
1386 ], 1384 ],
1387 "webkitfullscreenerrorEvent": [ 1385 "webkitfullscreenerrorEvent": [
1388 "/**", 1386 "/**",
1389 " * Static factory designed to expose `fullscreenerror` events to ev ent", 1387 " * Static factory designed to expose `fullscreenerror` events to ev ent",
1390 " * handlers that are not necessarily instances of [Element].", 1388 " * handlers that are not necessarily instances of [Element].",
1391 " *", 1389 " *",
1392 " * See [EventStreamProvider] for usage information.", 1390 " * See [EventStreamProvider] for usage information.",
1393 " */" 1391 " */"
1394 ], 1392 ],
1395 "webkitGetRegionFlowRanges": [ 1393 "webkitGetRegionFlowRanges": [
1396 "/**", 1394 "/**",
1397 " * Returns an array of ranges of fragments in the flow.", 1395 " * Returns an array of ranges of fragments in the flow.",
1398 " *", 1396 " *",
1399 " * ## Other resources", 1397 " * ## Other resources",
1400 " *", 1398 " *",
1401 " * * [CSS regions and exclusions tutorial]", 1399 " * * [CSS regions and exclusions",
1402 " * (http://www.html5rocks.com/en/tutorials/regions/adobe/) from HTM L5Rocks.", 1400 " * tutorial](http://www.html5rocks.com/en/tutorials/regions/adobe /) from HTML5Rocks.",
1403 " * * [Regions](http://html.adobe.com/webplatform/layout/regions/) f rom Adobe.", 1401 " * * [Regions](http://webplatform.adobe.com/regions/) from Adobe.",
1404 " * * [CSS regions specification]", 1402 " * * [CSS regions specification](http://www.w3.org/TR/css3-regions/ ) from W3C.",
1405 " * (http://www.w3.org/TR/css3-regions/) from W3C.",
1406 " */" 1403 " */"
1407 ], 1404 ],
1408 "webkitRegionOverset": [ 1405 "webkitRegionOverset": [
1409 "/**", 1406 "/**",
1410 " * The current state of this region.", 1407 " * The current state of this region.",
1411 " *", 1408 " *",
1412 " * If `\"empty\"`, then there is no content in this region.", 1409 " * If `\"empty\"`, then there is no content in this region.",
1413 " * If `\"fit\"`, then content fits into this region, and more conte nt can be", 1410 " * If `\"fit\"`, then content fits into this region, and more conte nt can be",
1414 " * added. If `\"overset\"`, then there is more content than can be fit into this", 1411 " * added. If `\"overset\"`, then there is more content than can be fit into this",
1415 " * region.", 1412 " * region.",
1416 " *", 1413 " *",
1417 " * ## Other resources", 1414 " * ## Other resources",
1418 " *", 1415 " *",
1419 " * * [CSS regions and exclusions tutorial]", 1416 " * * [CSS regions and exclusions",
1420 " * (http://www.html5rocks.com/en/tutorials/regions/adobe/) from HTM L5Rocks.", 1417 " * tutorial](http://www.html5rocks.com/en/tutorials/regions/adobe /) from HTML5Rocks.",
1421 " * * [Regions](http://html.adobe.com/webplatform/layout/regions/) f rom Adobe.", 1418 " * * [Regions](http://webplatform.adobe.com/regions/) from Adobe.",
1422 " * * [CSS regions specification]", 1419 " * * [CSS regions specification](http://www.w3.org/TR/css3-regions/ ) from W3C.",
1423 " * (http://www.w3.org/TR/css3-regions/) from W3C.",
1424 " */" 1420 " */"
1425 ], 1421 ],
1426 "webkitRequestFullscreen": [ 1422 "webkitRequestFullscreen": [
1427 "/**", 1423 "/**",
1428 " * Displays this element fullscreen.", 1424 " * Displays this element fullscreen.",
1429 " *", 1425 " *",
1430 " * ## Other resources", 1426 " * ## Other resources",
1431 " *", 1427 " *",
1432 " * * [Using the fullscreen API]", 1428 " * * [Using the fullscreen",
1433 " * (http://docs.webplatform.org/wiki/tutorials/using_the_full-scree n_api)", 1429 " * API](http://docs.webplatform.org/wiki/tutorials/using_the_full -screen_api)",
1434 " * tutorial from WebPlatform.org.", 1430 " * tutorial from WebPlatform.org.",
1435 " * * [Fullscreen specification]", 1431 " * * [Fullscreen specification](http://www.w3.org/TR/fullscreen/) f rom W3C.",
1436 " * (http://www.w3.org/TR/fullscreen/) from W3C.",
1437 " */" 1432 " */"
1438 ], 1433 ],
1439 "webkitRequestPointerLock": [ 1434 "webkitRequestPointerLock": [
1440 "/**", 1435 "/**",
1441 " * Locks the mouse pointer to this element.", 1436 " * Locks the mouse pointer to this element.",
1442 " *", 1437 " *",
1443 " * ## Other resources", 1438 " * ## Other resources",
1444 " *", 1439 " *",
1445 " * * [Pointer lock and first person shooter controls]", 1440 " * * [Pointer lock and first person shooter",
1446 " * (http://www.html5rocks.com/en/tutorials/pointerlock/intro/) tuto rial from", 1441 " * controls](http://www.html5rocks.com/en/tutorials/pointerlock/i ntro/)",
1447 " * HTML5Rocks.", 1442 " * tutorial from HTML5Rocks.",
1448 " *", 1443 " * * [Pointer lock specification](http://www.w3.org/TR/pointerlock/ )",
1449 " * * [Pointer lock specification]", 1444 " * from W3C.",
1450 " * (http://www.w3.org/TR/pointerlock/) from W3C.",
1451 " */" 1445 " */"
1452 ] 1446 ]
1453 } 1447 }
1454 }, 1448 },
1455 "Event": { 1449 "Event": {
1456 "members": { 1450 "members": {
1457 "AT_TARGET": [ 1451 "AT_TARGET": [
1458 "/**", 1452 "/**",
1459 " * This event is being handled by the event target.", 1453 " * This event is being handled by the event target.",
1460 " *", 1454 " *",
1461 " * ## Other resources", 1455 " * ## Other resources",
1462 " *", 1456 " *",
1463 " * * [Target phase] (http://www.w3.org/TR/DOM-Level-3-Events/#targe t-phase)", 1457 " * * [Target phase](http://www.w3.org/TR/DOM-Level-3-Events/#target -phase)",
1464 " * from W3C.", 1458 " * from W3C.",
1465 " */" 1459 " */"
1466 ], 1460 ],
1467 "BUBBLING_PHASE": [ 1461 "BUBBLING_PHASE": [
1468 "/**", 1462 "/**",
1469 " * This event is bubbling up through the target's ancestors.", 1463 " * This event is bubbling up through the target's ancestors.",
1470 " *", 1464 " *",
1471 " * ## Other resources", 1465 " * ## Other resources",
1472 " *", 1466 " *",
1473 " * * [Bubble phase] (http://www.w3.org/TR/DOM-Level-3-Events/#bubbl e-phase)", 1467 " * * [Bubble phase](http://www.w3.org/TR/DOM-Level-3-Events/#bubble -phase)",
1474 " * from W3C.", 1468 " * from W3C.",
1475 " */" 1469 " */"
1476 ], 1470 ],
1477 "CAPTURING_PHASE": [ 1471 "CAPTURING_PHASE": [
1478 "/**", 1472 "/**",
1479 " * This event is propagating through the target's ancestors, starti ng from the", 1473 " * This event is propagating through the target's ancestors, starti ng from the",
1480 " * document.", 1474 " * document.",
1481 " *", 1475 " *",
1482 " * ## Other resources", 1476 " * ## Other resources",
1483 " *", 1477 " *",
1484 " * * [Bubble phase] (http://www.w3.org/TR/DOM-Level-3-Events/#bubbl e-phase)", 1478 " * * [Bubble phase](http://www.w3.org/TR/DOM-Level-3-Events/#bubble -phase)",
1485 " * from W3C.", 1479 " * from W3C.",
1486 " */" 1480 " */"
1487 ], 1481 ],
1488 "clipboardData": [ 1482 "clipboardData": [
1489 "/**", 1483 "/**",
1490 " * Access to the system's clipboard data during copy, cut, and past e events.", 1484 " * Access to the system's clipboard data during copy, cut, and past e events.",
1491 " *", 1485 " *",
1492 " * ## Other resources", 1486 " * ## Other resources",
1493 " *", 1487 " *",
1494 " * * [clipboardData specification]", 1488 " * * [clipboardData specification](http://www.w3.org/TR/clipboard-a pis/#attributes)",
1495 " * (http://www.w3.org/TR/clipboard-apis/#attributes) from W3C.", 1489 " * from W3C.",
1496 " */" 1490 " */"
1497 ], 1491 ],
1498 "path": [ 1492 "path": [
1499 "/**", 1493 "/**",
1500 " * This event's path, taking into account shadow DOM.", 1494 " * This event's path, taking into account shadow DOM.",
1501 " *", 1495 " *",
1502 " * ## Other resources", 1496 " * ## Other resources",
1503 " *", 1497 " *",
1504 " * * [Shadow DOM extensions to Event]", 1498 " * * [Shadow DOM extensions to",
1505 " * (http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-e vent) from", 1499 " * Event](http://w3c.github.io/webcomponents/spec/shadow/#extensi ons-to-event)",
1506 " * W3C.", 1500 " * from W3C.",
1507 " */" 1501 " */"
1508 ] 1502 ]
1509 } 1503 }
1510 }, 1504 },
1511 "EventSource": { 1505 "EventSource": {
1512 "members": { 1506 "members": {
1513 "errorEvent": [ 1507 "errorEvent": [
1514 "/**", 1508 "/**",
1515 " * Static factory designed to expose `error` events to event", 1509 " * Static factory designed to expose `error` events to event",
1516 " * handlers that are not necessarily instances of [EventSource].", 1510 " * handlers that are not necessarily instances of [EventSource].",
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1687 }, 1681 },
1688 "HTMLAreaElement": { 1682 "HTMLAreaElement": {
1689 "comment": [ 1683 "comment": [
1690 "/**", 1684 "/**",
1691 " * DOM Area Element, which links regions of an image map with a hyperli nk.", 1685 " * DOM Area Element, which links regions of an image map with a hyperli nk.",
1692 " *", 1686 " *",
1693 " * The element can also define an uninteractive region of the map.", 1687 " * The element can also define an uninteractive region of the map.",
1694 " *", 1688 " *",
1695 " * See also:", 1689 " * See also:",
1696 " *", 1690 " *",
1697 " * * [<area>](https://developer.mozilla.org/en-US/docs/HTML/Element/are a)", 1691 " * * [`<area>`](https://developer.mozilla.org/en-US/docs/HTML/Element/a rea)",
1698 " * on MDN.", 1692 " * on MDN.",
1699 " */" 1693 " */"
1700 ] 1694 ]
1701 }, 1695 },
1702 "HTMLBodyElement": { 1696 "HTMLBodyElement": {
1703 "members": { 1697 "members": {
1704 "blurEvent": [ 1698 "blurEvent": [
1705 "/**", 1699 "/**",
1706 " * Static factory designed to expose `blur` events to event", 1700 " * Static factory designed to expose `blur` events to event",
1707 " * handlers that are not necessarily instances of [BodyElement].", 1701 " * handlers that are not necessarily instances of [BodyElement].",
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
1880 " * which is an inline-level element.", 1874 " * which is an inline-level element.",
1881 " *", 1875 " *",
1882 " * Example usage:", 1876 " * Example usage:",
1883 " *", 1877 " *",
1884 " * DivElement div = new DivElement();", 1878 " * DivElement div = new DivElement();",
1885 " * div.text = 'Here's my new DivElem", 1879 " * div.text = 'Here's my new DivElem",
1886 " * document.body.elements.add(elem);", 1880 " * document.body.elements.add(elem);",
1887 " *", 1881 " *",
1888 " * See also:", 1882 " * See also:",
1889 " *", 1883 " *",
1890 " * * [HTML <div> element](http://www.w3.org/TR/html-markup/div.html) fr om W3C.", 1884 " * * [HTML `<div>` element](http://www.w3.org/TR/html-markup/div.html) from W3C.",
1891 " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block -boxes) from W3C.", 1885 " * * [Block-level element](http://www.w3.org/TR/CSS2/visuren.html#block -boxes) from W3C.",
1892 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.", 1886 " * * [Inline-level element](http://www.w3.org/TR/CSS2/visuren.html#inli ne-boxes) from W3C.",
1893 " */" 1887 " */"
1894 ] 1888 ]
1895 }, 1889 },
1896 "HTMLFormElement": { 1890 "HTMLFormElement": {
1897 "members": { 1891 "members": {
1898 "autocompleteerrorEvent": [ 1892 "autocompleteerrorEvent": [
1899 "/**", 1893 "/**",
1900 " * Static factory designed to expose `autocompleteerror` events to event", 1894 " * Static factory designed to expose `autocompleteerror` events to event",
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
2450 " * This method is more efficient than `nodes.add`, and is the prefe rred", 2444 " * This method is more efficient than `nodes.add`, and is the prefe rred",
2451 " * way of appending a child node.", 2445 " * way of appending a child node.",
2452 " */" 2446 " */"
2453 ], 2447 ],
2454 "childNodes": [ 2448 "childNodes": [
2455 "/**", 2449 "/**",
2456 " * A list of this node's children.", 2450 " * A list of this node's children.",
2457 " *", 2451 " *",
2458 " * ## Other resources", 2452 " * ## Other resources",
2459 " *", 2453 " *",
2460 " * * [Node.childNodes]", 2454 " * * [Node.childNodes](https://developer.mozilla.org/en-US/docs/Web /API/Node.childNodes)",
2461 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.childNode s)", 2455 " * from MDN.",
2462 " * from MDN.",
2463 " */" 2456 " */"
2464 ], 2457 ],
2465 "cloneNode": [ 2458 "cloneNode": [
2466 "/**", 2459 "/**",
2467 " * Returns a copy of this node.", 2460 " * Returns a copy of this node.",
2468 " *", 2461 " *",
2469 " * If [deep] is `true`, then all of this node's children and decend ents are", 2462 " * If [deep] is `true`, then all of this node's children and decend ents are",
2470 " * copied as well. If [deep] is `false`, then only this node is cop ied.", 2463 " * copied as well. If [deep] is `false`, then only this node is cop ied.",
2471 " *", 2464 " *",
2472 " * ## Other resources", 2465 " * ## Other resources",
2473 " *", 2466 " *",
2474 " * * [Node.cloneNode]", 2467 " * * [Node.cloneNode](https://developer.mozilla.org/en-US/docs/Web/ API/Node.cloneNode)",
2475 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.cloneNode ) from", 2468 " * from MDN.",
2476 " * MDN.",
2477 " */" 2469 " */"
2478 ], 2470 ],
2479 "contains": [ 2471 "contains": [
2480 "/**", 2472 "/**",
2481 " * Returns true if this node contains the specified node.", 2473 " * Returns true if this node contains the specified node.",
2482 " *", 2474 " *",
2483 " * ## Other resources", 2475 " * ## Other resources",
2484 " *", 2476 " *",
2485 " * * [Node.contains]", 2477 " * * [Node.contains](https://developer.mozilla.org/en-US/docs/Web/A PI/Node.contains)",
2486 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.contains) from MDN.", 2478 " * from MDN.",
2487 " */" 2479 " */"
2488 ], 2480 ],
2489 "firstChild": [ 2481 "firstChild": [
2490 "/**", 2482 "/**",
2491 " * The first child of this node.", 2483 " * The first child of this node.",
2492 " *", 2484 " *",
2493 " * ## Other resources", 2485 " * ## Other resources",
2494 " *", 2486 " *",
2495 " * * [Node.firstChild]", 2487 " * * [Node.firstChild](https://developer.mozilla.org/en-US/docs/Web /API/Node.firstChild)",
2496 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.firstChil d)", 2488 " * from MDN.",
2497 " * from MDN.",
2498 " */" 2489 " */"
2499 ], 2490 ],
2500 "hasChildNodes": [ 2491 "hasChildNodes": [
2501 "/**", 2492 "/**",
2502 " * Returns true if this node has any children.", 2493 " * Returns true if this node has any children.",
2503 " *", 2494 " *",
2504 " * ## Other resources", 2495 " * ## Other resources",
2505 " *", 2496 " *",
2506 " * * [Node.hasChildNodes]", 2497 " * * [Node.hasChildNodes](https://developer.mozilla.org/en-US/docs/ Web/API/Node.hasChildNodes)",
2507 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.hasChildN odes) from", 2498 " * from MDN.",
2508 " * MDN.",
2509 " */" 2499 " */"
2510 ], 2500 ],
2511 "insertBefore": [ 2501 "insertBefore": [
2512 "/**", 2502 "/**",
2513 " * Inserts all of the nodes into this node directly before refChild .", 2503 " * Inserts all of the nodes into this node directly before refChild .",
2514 " *", 2504 " *",
2515 " * ## Other resources", 2505 " * ## Other resources",
2516 " *", 2506 " *",
2517 " * * [Node.insertBefore]", 2507 " * * [Node.insertBefore](https://developer.mozilla.org/en-US/docs/W eb/API/Node.insertBefore)",
2518 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.insertBef ore) from", 2508 " * from MDN.",
2519 " * MDN.",
2520 " */" 2509 " */"
2521 ], 2510 ],
2522 "lastChild": [ 2511 "lastChild": [
2523 "/**", 2512 "/**",
2524 " * The last child of this node.", 2513 " * The last child of this node.",
2525 " *", 2514 " *",
2526 " * ## Other resources", 2515 " * ## Other resources",
2527 " *", 2516 " *",
2528 " * * [Node.lastChild]", 2517 " * * [Node.lastChild](https://developer.mozilla.org/en-US/docs/Web/ API/Node.lastChild)",
2529 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.lastChild )", 2518 " * from MDN.",
2530 " * from MDN.",
2531 " */" 2519 " */"
2532 ], 2520 ],
2533 "nextSibling": [ 2521 "nextSibling": [
2534 "/**", 2522 "/**",
2535 " * The next sibling node.", 2523 " * The next sibling node.",
2536 " *", 2524 " *",
2537 " * ## Other resources", 2525 " * ## Other resources",
2538 " *", 2526 " *",
2539 " * * [Node.nextSibling]", 2527 " * * [Node.nextSibling](https://developer.mozilla.org/en-US/docs/We b/API/Node.nextSibling)",
2540 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.nextSibli ng)", 2528 " * from MDN.",
2541 " * from MDN.",
2542 " */" 2529 " */"
2543 ], 2530 ],
2544 "nodeName": [ 2531 "nodeName": [
2545 "/**", 2532 "/**",
2546 " * The name of this node.", 2533 " * The name of this node.",
2547 " *", 2534 " *",
2548 " * This varies by this node's [nodeType].", 2535 " * This varies by this node's [nodeType].",
2549 " *", 2536 " *",
2550 " * ## Other resources", 2537 " * ## Other resources",
2551 " *", 2538 " *",
2552 " * * [Node.nodeName]", 2539 " * * [Node.nodeName](https://developer.mozilla.org/en-US/docs/Web/A PI/Node.nodeName)",
2553 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.nodeName) ", 2540 " * from MDN. This page contains a table of [nodeName] values for each",
2554 " * from MDN. This page contains a table of [nodeName] values for ea ch", 2541 " * [nodeType].",
2555 " * [nodeType].",
2556 " */" 2542 " */"
2557 ], 2543 ],
2558 "nodeType": [ 2544 "nodeType": [
2559 "/**", 2545 "/**",
2560 " * The type of node.", 2546 " * The type of node.",
2561 " *", 2547 " *",
2562 " * This value is one of:", 2548 " * This value is one of:",
2563 " *", 2549 " *",
2564 " * * [ATTRIBUTE_NODE] if this node is an attribute.", 2550 " * * [ATTRIBUTE_NODE] if this node is an attribute.",
2565 " * * [CDATA_SECTION_NODE] if this node is a [CDataSection].", 2551 " * * [CDATA_SECTION_NODE] if this node is a [CDataSection].",
2566 " * * [COMMENT_NODE] if this node is a [Comment].", 2552 " * * [COMMENT_NODE] if this node is a [Comment].",
2567 " * * [DOCUMENT_FRAGMENT_NODE] if this node is a [DocumentFragment]. ", 2553 " * * [DOCUMENT_FRAGMENT_NODE] if this node is a [DocumentFragment]. ",
2568 " * * [DOCUMENT_NODE] if this node is a [Document].", 2554 " * * [DOCUMENT_NODE] if this node is a [Document].",
2569 " * * [DOCUMENT_TYPE_NODE] if this node is a [DocumentType] node.", 2555 " * * [DOCUMENT_TYPE_NODE] if this node is a [DocumentType] node.",
2570 " * * [ELEMENT_NODE] if this node is an [Element].", 2556 " * * [ELEMENT_NODE] if this node is an [Element].",
2571 " * * [ENTITY_NODE] if this node is an entity.", 2557 " * * [ENTITY_NODE] if this node is an entity.",
2572 " * * [ENTITY_REFERENCE_NODE] if this node is an entity reference.", 2558 " * * [ENTITY_REFERENCE_NODE] if this node is an entity reference.",
2573 " * * [NOTATION_NODE] if this node is a notation.", 2559 " * * [NOTATION_NODE] if this node is a notation.",
2574 " * * [PROCESSING_INSTRUCTION_NODE] if this node is a [ProcessingIns truction].", 2560 " * * [PROCESSING_INSTRUCTION_NODE] if this node is a [ProcessingIns truction].",
2575 " * * [TEXT_NODE] if this node is a [Text] node.", 2561 " * * [TEXT_NODE] if this node is a [Text] node.",
2576 " *", 2562 " *",
2577 " * ## Other resources", 2563 " * ## Other resources",
2578 " *", 2564 " *",
2579 " * * [Node.nodeType]", 2565 " * * [Node.nodeType](https://developer.mozilla.org/en-US/docs/Web/A PI/Node.nodeType)",
2580 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.nodeType) from MDN.", 2566 " * from MDN.",
2581 " */" 2567 " */"
2582 ], 2568 ],
2583 "nodeValue": [ 2569 "nodeValue": [
2584 "/**", 2570 "/**",
2585 " * The value of this node.", 2571 " * The value of this node.",
2586 " *", 2572 " *",
2587 " * This varies by this type's [nodeType].", 2573 " * This varies by this type's [nodeType].",
2588 " *", 2574 " *",
2589 " * ## Other resources", 2575 " * ## Other resources",
2590 " *", 2576 " *",
2591 " * * [Node.nodeValue]", 2577 " * * [Node.nodeValue](https://developer.mozilla.org/en-US/docs/Web/ API/Node.nodeValue)",
2592 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.nodeValue )", 2578 " * from MDN. This page contains a table of [nodeValue] values for each",
2593 " * from MDN. This page contains a table of [nodeValue] values for e ach", 2579 " * [nodeType].",
2594 " * [nodeType].",
2595 " */" 2580 " */"
2596 ], 2581 ],
2597 "ownerDocument": [ 2582 "ownerDocument": [
2598 "/**", 2583 "/**",
2599 " * The document this node belongs to.", 2584 " * The document this node belongs to.",
2600 " *", 2585 " *",
2601 " * Returns null if this node does not belong to any document.", 2586 " * Returns null if this node does not belong to any document.",
2602 " *", 2587 " *",
2603 " * ## Other resources", 2588 " * ## Other resources",
2604 " *", 2589 " *",
2605 " * * [Node.ownerDocument]", 2590 " * * [Node.ownerDocument](https://developer.mozilla.org/en-US/docs/ Web/API/Node.ownerDocument)",
2606 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.ownerDocu ment) from", 2591 " * from MDN.",
2607 " * MDN.",
2608 " */" 2592 " */"
2609 ], 2593 ],
2610 "parentElement": [ 2594 "parentElement": [
2611 "/**", 2595 "/**",
2612 " * The parent element of this node.", 2596 " * The parent element of this node.",
2613 " *", 2597 " *",
2614 " * Returns null if this node either does not have a parent or its p arent is", 2598 " * Returns null if this node either does not have a parent or its p arent is",
2615 " * not an element.", 2599 " * not an element.",
2616 " *", 2600 " *",
2617 " * ## Other resources", 2601 " * ## Other resources",
2618 " *", 2602 " *",
2619 " * * [Node.parentElement]", 2603 " * * [Node.parentElement](https://developer.mozilla.org/en-US/docs/ Web/API/Node.parentElement)",
2620 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.parentEle ment) from", 2604 " * from W3C.",
2621 " * W3C.",
2622 " */" 2605 " */"
2623 ], 2606 ],
2624 "parentNode": [ 2607 "parentNode": [
2625 "/**", 2608 "/**",
2626 " * The parent node of this node.", 2609 " * The parent node of this node.",
2627 " *", 2610 " *",
2628 " * ## Other resources", 2611 " * ## Other resources",
2629 " *", 2612 " *",
2630 " * * [Node.parentNode]", 2613 " * * [Node.parentNode](https://developer.mozilla.org/en-US/docs/Web /API/Node.parentNode)",
2631 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.parentNod e) from", 2614 " * from MDN.",
2632 " * MDN.",
2633 " */" 2615 " */"
2634 ], 2616 ],
2635 "previousSibling": [ 2617 "previousSibling": [
2636 "/**", 2618 "/**",
2637 " * The previous sibling node.", 2619 " * The previous sibling node.",
2638 " *", 2620 " *",
2639 " * ## Other resources", 2621 " * ## Other resources",
2640 " *", 2622 " *",
2641 " * * [Node.previousSibling]", 2623 " * * [Node.previousSibling](https://developer.mozilla.org/en-US/doc s/Web/API/Node.previousSibling)",
2642 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.previousS ibling)", 2624 " * from MDN.",
2643 " * from MDN.",
2644 " */" 2625 " */"
2645 ], 2626 ],
2646 "textContent": [ 2627 "textContent": [
2647 "/**", 2628 "/**",
2648 " * All text within this node and its decendents.", 2629 " * All text within this node and its decendents.",
2649 " *", 2630 " *",
2650 " * ## Other resources", 2631 " * ## Other resources",
2651 " *", 2632 " *",
2652 " * * [Node.textContent]", 2633 " * * [Node.textContent](https://developer.mozilla.org/en-US/docs/We b/API/Node.textContent)",
2653 " * (https://developer.mozilla.org/en-US/docs/Web/API/Node.textConte nt) from", 2634 " * from MDN.",
2654 " * MDN.",
2655 " */" 2635 " */"
2656 ] 2636 ]
2657 } 2637 }
2658 }, 2638 },
2659 "Notification": { 2639 "Notification": {
2660 "members": { 2640 "members": {
2661 "clickEvent": [ 2641 "clickEvent": [
2662 "/**", 2642 "/**",
2663 " * Static factory designed to expose `click` events to event", 2643 " * Static factory designed to expose `click` events to event",
2664 " * handlers that are not necessarily instances of [Notification].", 2644 " * handlers that are not necessarily instances of [Notification].",
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
3280 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.", 3260 " * * [Window](http://www.w3.org/TR/Window/) from the W3C.",
3281 " */" 3261 " */"
3282 ], 3262 ],
3283 "members": { 3263 "members": {
3284 "alert": [ 3264 "alert": [
3285 "/**", 3265 "/**",
3286 " * Displays a modal alert to the user.", 3266 " * Displays a modal alert to the user.",
3287 " *", 3267 " *",
3288 " * ## Other resources", 3268 " * ## Other resources",
3289 " *", 3269 " *",
3290 " * * [User prompts]", 3270 " * * [User prompts](https://html.spec.whatwg.org/multipage/webappap is.html#user-prompts)",
3291 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/tim ers.html#user-prompts)", 3271 " * from WHATWG.",
3292 " * from WHATWG.",
3293 " */" 3272 " */"
3294 ], 3273 ],
3295 "applicationCache": [ 3274 "applicationCache": [
3296 "/**", 3275 "/**",
3297 " * The application cache for this window.", 3276 " * The application cache for this window.",
3298 " *", 3277 " *",
3299 " * ## Other resources", 3278 " * ## Other resources",
3300 " *", 3279 " *",
3301 " * * [A beginner's guide to using the application cache]", 3280 " * * [A beginner's guide to using the application",
3302 " * (http://www.html5rocks.com/en/tutorials/appcache/beginner) from HTML5Rocks.", 3281 " * cache](http://www.html5rocks.com/en/tutorials/appcache/beginne r)",
3303 " * * [Application cache API]", 3282 " * from HTML5Rocks.",
3304 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/off line.html#application-cache-api)", 3283 " * * [Application cache",
3305 " * from WHATWG.", 3284 " * API](https://html.spec.whatwg.org/multipage/browsers.html#appl ication-cache-api)",
3285 " * from WHATWG.",
3306 " */" 3286 " */"
3307 ], 3287 ],
3308 "confirm": [ 3288 "confirm": [
3309 "/**", 3289 "/**",
3310 " * Displays a modal OK/Cancel prompt to the user.", 3290 " * Displays a modal OK/Cancel prompt to the user.",
3311 " *", 3291 " *",
3312 " * ## Other resources", 3292 " * ## Other resources",
3313 " *", 3293 " *",
3314 " * * [User prompts]", 3294 " * * [User prompts](https://html.spec.whatwg.org/multipage/webappap is.html#user-prompts)",
3315 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/tim ers.html#user-prompts)", 3295 " * from WHATWG.",
3316 " * from WHATWG.",
3317 " */" 3296 " */"
3318 ], 3297 ],
3319 "crypto": [ 3298 "crypto": [
3320 "/**", 3299 "/**",
3321 " * Entrypoint for the browser's cryptographic functions.", 3300 " * Entrypoint for the browser's cryptographic functions.",
3322 " *", 3301 " *",
3323 " * ## Other resources", 3302 " * ## Other resources",
3324 " *", 3303 " *",
3325 " * * [Web cryptography API](http://www.w3.org/TR/WebCryptoAPI/) fro m W3C.", 3304 " * * [Web cryptography API](http://www.w3.org/TR/WebCryptoAPI/) fro m W3C.",
3326 " */" 3305 " */"
(...skipping 28 matching lines...) Expand all
3355 " *", 3334 " *",
3356 " * See [EventStreamProvider] for usage information.", 3335 " * See [EventStreamProvider] for usage information.",
3357 " */" 3336 " */"
3358 ], 3337 ],
3359 "devicePixelRatio": [ 3338 "devicePixelRatio": [
3360 "/**", 3339 "/**",
3361 " * The ratio between physical pixels and logical CSS pixels.", 3340 " * The ratio between physical pixels and logical CSS pixels.",
3362 " *", 3341 " *",
3363 " * ## Other resources", 3342 " * ## Other resources",
3364 " *", 3343 " *",
3365 " * * [devicePixelRatio]", 3344 " * * [devicePixelRatio](http://www.quirksmode.org/blog/archives/201 2/06/devicepixelrati.html)",
3366 " * (http://www.quirksmode.org/blog/archives/2012/06/devicepixelrati .html) from", 3345 " * from quirksmode.",
3367 " * quirksmode.", 3346 " * * [More about devicePixelRatio](http://www.quirksmode.org/blog/a rchives/2012/07/more_about_devi.html)",
3368 " * * [More about devicePixelRatio]", 3347 " * from quirksmode.",
3369 " * (http://www.quirksmode.org/blog/archives/2012/07/more_about_devi .html) from",
3370 " * quirksmode.",
3371 " */" 3348 " */"
3372 ], 3349 ],
3373 "DOMContentLoadedEvent": [ 3350 "DOMContentLoadedEvent": [
3374 "/**", 3351 "/**",
3375 " * Static factory designed to expose `contentloaded` events to even t", 3352 " * Static factory designed to expose `contentloaded` events to even t",
3376 " * handlers that are not necessarily instances of [Window].", 3353 " * handlers that are not necessarily instances of [Window].",
3377 " *", 3354 " *",
3378 " * See [EventStreamProvider] for usage information.", 3355 " * See [EventStreamProvider] for usage information.",
3379 " */" 3356 " */"
3380 ], 3357 ],
3381 "find": [ 3358 "find": [
3382 "/**", 3359 "/**",
3383 " * Finds text in this window.", 3360 " * Finds text in this window.",
3384 " *", 3361 " *",
3385 " * ## Other resources", 3362 " * ## Other resources",
3386 " *", 3363 " *",
3387 " * * [Window.find]", 3364 " * * [Window.find](https://developer.mozilla.org/en-US/docs/Web/API /Window.find)",
3388 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.find) f rom MDN.", 3365 " * from MDN.",
3389 " */" 3366 " */"
3390 ], 3367 ],
3391 "getMatchedCSSRules": [ 3368 "getMatchedCSSRules": [
3392 "/**", 3369 "/**",
3393 " * Returns all CSS rules that apply to the element's pseudo-element .", 3370 " * Returns all CSS rules that apply to the element's pseudo-element .",
3394 " */" 3371 " */"
3395 ], 3372 ],
3396 "getSelection": [ 3373 "getSelection": [
3397 "/**", 3374 "/**",
3398 " * Returns the currently selected text.", 3375 " * Returns the currently selected text.",
3399 " *", 3376 " *",
3400 " * ## Other resources", 3377 " * ## Other resources",
3401 " *", 3378 " *",
3402 " * * [Window.getSelection]", 3379 " * * [Window.getSelection](https://developer.mozilla.org/en-US/docs /Web/API/Window.getSelection)",
3403 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.getSele ction)", 3380 " * from MDN.",
3404 " * from MDN.",
3405 " */" 3381 " */"
3406 ], 3382 ],
3407 "hashchangeEvent": [ 3383 "hashchangeEvent": [
3408 "/**", 3384 "/**",
3409 " * Static factory designed to expose `hashchange` events to event", 3385 " * Static factory designed to expose `hashchange` events to event",
3410 " * handlers that are not necessarily instances of [Window].", 3386 " * handlers that are not necessarily instances of [Window].",
3411 " *", 3387 " *",
3412 " * See [EventStreamProvider] for usage information.", 3388 " * See [EventStreamProvider] for usage information.",
3413 " */" 3389 " */"
3414 ], 3390 ],
3415 "history": [ 3391 "history": [
3416 "/**", 3392 "/**",
3417 " * The current session history for this window's newest document.", 3393 " * The current session history for this window's newest document.",
3418 " *", 3394 " *",
3419 " * ## Other resources", 3395 " * ## Other resources",
3420 " *", 3396 " *",
3421 " * * [Loading web pages]", 3397 " * * [Loading web pages](https://html.spec.whatwg.org/multipage/bro wsers.html)",
3422 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html)", 3398 " * from WHATWG.",
3423 " * from WHATWG.",
3424 " */" 3399 " */"
3425 ], 3400 ],
3426 "innerHeight": [ 3401 "innerHeight": [
3427 "/**", 3402 "/**",
3428 " * The height of the viewport including scrollbars.", 3403 " * The height of the viewport including scrollbars.",
3429 " *", 3404 " *",
3430 " * ## Other resources", 3405 " * ## Other resources",
3431 " *", 3406 " *",
3432 " * * [innerHeight]", 3407 " * * [innerHeight](http://docs.webplatform.org/wiki/css/cssom/prope rties/innerHeight)",
3433 " * (http://docs.webplatform.org/wiki/css/cssom/properties/innerHeig ht) from", 3408 " * from WebPlatform.org.",
3434 " * WebPlatform.org.",
3435 " */" 3409 " */"
3436 ], 3410 ],
3437 "innerWidth": [ 3411 "innerWidth": [
3438 "/**", 3412 "/**",
3439 " * The width of the viewport including scrollbars.", 3413 " * The width of the viewport including scrollbars.",
3440 " *", 3414 " *",
3441 " * ## Other resources", 3415 " * ## Other resources",
3442 " *", 3416 " *",
3443 " * * [innerWidth]", 3417 " * * [innerWidth](http://docs.webplatform.org/wiki/css/cssom/proper ties/innerWidth)",
3444 " * (http://docs.webplatform.org/wiki/css/cssom/properties/innerWidt h) from", 3418 " * from WebPlatform.org.",
3445 " * WebPlatform.org.",
3446 " */" 3419 " */"
3447 ], 3420 ],
3448 "localStorage": [ 3421 "localStorage": [
3449 "/**", 3422 "/**",
3450 " * Storage for this window that persists across sessions.", 3423 " * Storage for this window that persists across sessions.",
3451 " *", 3424 " *",
3452 " * ## Other resources", 3425 " * ## Other resources",
3453 " *", 3426 " *",
3454 " * * [DOM storage guide]", 3427 " * * [DOM storage guide](https://developer.mozilla.org/en-US/docs/W eb/Guide/API/DOM/Storage)",
3455 " * (https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Stor age) from", 3428 " * from MDN.",
3456 " * MDN.", 3429 " * * [The past, present & future of local storage for web",
3457 " * * [The past, present & future of local storage for web applicati ons]", 3430 " * applications](http://diveintohtml5.info/storage.html) from Div e Into HTML5.",
3458 " * (http://diveintohtml5.info/storage.html) from Dive Into HTML5.", 3431 " * * [Local storage specification](http://www.w3.org/TR/webstorage/ #the-localstorage-attribute)",
3459 " * * [Local storage specification]", 3432 " * from W3C.",
3460 " * (http://www.w3.org/TR/webstorage/#the-localstorage-attribute) fr om W3C.",
3461 " */" 3433 " */"
3462 ], 3434 ],
3463 "locationbar": [ 3435 "locationbar": [
3464 "/**", 3436 "/**",
3465 " * This window's location bar, which displays the URL.", 3437 " * This window's location bar, which displays the URL.",
3466 " *", 3438 " *",
3467 " * ## Other resources", 3439 " * ## Other resources",
3468 " *", 3440 " *",
3469 " * * [Browser interface elements]", 3441 " * * [Browser interface",
3470 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3442 " * elements](https://html.spec.whatwg.org/multipage/browsers.html #browser-interface-elements)",
3471 " * from WHATWG.", 3443 " * from WHATWG.",
3472 " */" 3444 " */"
3473 ], 3445 ],
3474 "matchMedia": [ 3446 "matchMedia": [
3475 "/**", 3447 "/**",
3476 " * Returns a list of media queries for the given query string.", 3448 " * Returns a list of media queries for the given query string.",
3477 " *", 3449 " *",
3478 " * ## Other resources", 3450 " * ## Other resources",
3479 " *", 3451 " *",
3480 " * * [Testing media queries]", 3452 " * * [Testing media",
3481 " * (https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Testing_ media_queries)", 3453 " * queries](https://developer.mozilla.org/en-US/docs/Web/Guide/CS S/Testing_media_queries)",
3482 " * from MDN.", 3454 " * from MDN.",
3483 " * * [The MediaQueryList specification]", 3455 " * * [The MediaQueryList",
3484 " * (http://www.w3.org/TR/cssom-view/#the-mediaquerylist-interface) from W3C.", 3456 " * specification](http://www.w3.org/TR/cssom-view/#the-mediaquery list-interface) from W3C.",
3485 " */" 3457 " */"
3486 ], 3458 ],
3487 "menubar": [ 3459 "menubar": [
3488 "/**", 3460 "/**",
3489 " * This window's menu bar, which displays menu commands.", 3461 " * This window's menu bar, which displays menu commands.",
3490 " *", 3462 " *",
3491 " * ## Other resources", 3463 " * ## Other resources",
3492 " *", 3464 " *",
3493 " * * [Browser interface elements]", 3465 " * * [Browser interface",
3494 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3466 " * elements](https://html.spec.whatwg.org/multipage/browsers.html #browser-interface-elements)",
3495 " * from WHATWG.", 3467 " * from WHATWG.",
3496 " */" 3468 " */"
3497 ], 3469 ],
3498 "messageEvent": [ 3470 "messageEvent": [
3499 "/**", 3471 "/**",
3500 " * Static factory designed to expose `message` events to event", 3472 " * Static factory designed to expose `message` events to event",
3501 " * handlers that are not necessarily instances of [Window].", 3473 " * handlers that are not necessarily instances of [Window].",
3502 " *", 3474 " *",
3503 " * See [EventStreamProvider] for usage information.", 3475 " * See [EventStreamProvider] for usage information.",
3504 " */" 3476 " */"
3505 ], 3477 ],
3506 "moveBy": [ 3478 "moveBy": [
3507 "/**", 3479 "/**",
3508 " * Moves this window.", 3480 " * Moves this window.",
3509 " *", 3481 " *",
3510 " * x and y can be negative.", 3482 " * x and y can be negative.",
3511 " *", 3483 " *",
3512 " * ## Other resources", 3484 " * ## Other resources",
3513 " *", 3485 " *",
3514 " * * [Window.moveBy]", 3486 " * * [Window.moveBy](https://developer.mozilla.org/en-US/docs/Web/A PI/Window.moveBy)",
3515 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.moveBy) from MDN.", 3487 " * from MDN.",
3516 " * * [Window.moveBy]", 3488 " * * [Window.moveBy](http://dev.w3.org/csswg/cssom-view/#dom-window -moveby) from W3C.",
3517 " * (http://dev.w3.org/csswg/cssom-view/#dom-window-moveby) from W3C .",
3518 " */" 3489 " */"
3519 ], 3490 ],
3520 "name": [ 3491 "name": [
3521 "/**", 3492 "/**",
3522 " * The name of this window.", 3493 " * The name of this window.",
3523 " *", 3494 " *",
3524 " * ## Other resources", 3495 " * ## Other resources",
3525 " *", 3496 " *",
3526 " * * [Window name]", 3497 " * * [Window name](http://docs.webplatform.org/wiki/html/attributes /name_(window))",
3527 " * (http://docs.webplatform.org/wiki/html/attributes/name_(window)) from", 3498 " * from WebPlatform.org.",
3528 " * WebPlatform.org.",
3529 " */" 3499 " */"
3530 ], 3500 ],
3531 "navigator": [ 3501 "navigator": [
3532 "/**", 3502 "/**",
3533 " * The user agent accessing this window.", 3503 " * The user agent accessing this window.",
3534 " *", 3504 " *",
3535 " * ## Other resources", 3505 " * ## Other resources",
3536 " *", 3506 " *",
3537 " * * [The navigator object]", 3507 " * * [The navigator",
3538 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/tim ers.html#the-navigator-object)", 3508 " * object](https://html.spec.whatwg.org/multipage/webappapis.html #the-navigator-object)",
3539 " * from WHATWG.", 3509 " * from WHATWG.",
3540 " */" 3510 " */"
3541 ], 3511 ],
3542 "offlineEvent": [ 3512 "offlineEvent": [
3543 "/**", 3513 "/**",
3544 " * Static factory designed to expose `offline` events to event", 3514 " * Static factory designed to expose `offline` events to event",
3545 " * handlers that are not necessarily instances of [Window].", 3515 " * handlers that are not necessarily instances of [Window].",
3546 " *", 3516 " *",
3547 " * See [EventStreamProvider] for usage information.", 3517 " * See [EventStreamProvider] for usage information.",
3548 " */" 3518 " */"
3549 ], 3519 ],
3550 "offscreenBuffering": [ 3520 "offscreenBuffering": [
3551 "/**", 3521 "/**",
3552 " * Whether objects are drawn offscreen before being displayed.", 3522 " * Whether objects are drawn offscreen before being displayed.",
3553 " *", 3523 " *",
3554 " * ## Other resources", 3524 " * ## Other resources",
3555 " *", 3525 " *",
3556 " * * [offscreenBuffering]", 3526 " * * [offscreenBuffering](http://docs.webplatform.org/wiki/dom/prop erties/offscreenBuffering)",
3557 " * (http://docs.webplatform.org/wiki/dom/properties/offscreenBuffer ing) from", 3527 " * from WebPlatform.org.",
3558 " * WebPlatform.org.",
3559 " */" 3528 " */"
3560 ], 3529 ],
3561 "onabort": [ 3530 "onabort": [
3562 "/// Stream of `abort` events handled by this [Window]." 3531 "/// Stream of `abort` events handled by this [Window]."
3563 ], 3532 ],
3564 "onblur": [ 3533 "onblur": [
3565 "/// Stream of `blur` events handled by this [Window]." 3534 "/// Stream of `blur` events handled by this [Window]."
3566 ], 3535 ],
3567 "onchange": [ 3536 "onchange": [
3568 "/// Stream of `change` events handled by this [Window]." 3537 "/// Stream of `change` events handled by this [Window]."
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
3733 ], 3702 ],
3734 "openDatabase": [ 3703 "openDatabase": [
3735 "/// *Deprecated.*" 3704 "/// *Deprecated.*"
3736 ], 3705 ],
3737 "outerHeight": [ 3706 "outerHeight": [
3738 "/**", 3707 "/**",
3739 " * The height of this window including all user interface elements. ", 3708 " * The height of this window including all user interface elements. ",
3740 " *", 3709 " *",
3741 " * ## Other resources", 3710 " * ## Other resources",
3742 " *", 3711 " *",
3743 " * * [outerHeight]", 3712 " * * [outerHeight](http://docs.webplatform.org/wiki/css/cssom/prope rties/outerHeight)",
3744 " * (http://docs.webplatform.org/wiki/css/cssom/properties/outerHeig ht) from", 3713 " * from WebPlatform.org.",
3745 " * WebPlatform.org.",
3746 " */" 3714 " */"
3747 ], 3715 ],
3748 "outerWidth": [ 3716 "outerWidth": [
3749 "/**", 3717 "/**",
3750 " * The width of the window including all user interface elements.", 3718 " * The width of the window including all user interface elements.",
3751 " *", 3719 " *",
3752 " * ## Other resources", 3720 " * ## Other resources",
3753 " *", 3721 " *",
3754 " * * [outerWidth]", 3722 " * * [outerWidth](http://docs.webplatform.org/wiki/css/cssom/proper ties/outerWidth)",
3755 " * (http://docs.webplatform.org/wiki/css/cssom/properties/outerWidt h) from", 3723 " * from WebPlatform.org.",
3756 " * WebPlatform.org.",
3757 " */" 3724 " */"
3758 ], 3725 ],
3759 "pagehideEvent": [ 3726 "pagehideEvent": [
3760 "/**", 3727 "/**",
3761 " * Static factory designed to expose `pagehide` events to event", 3728 " * Static factory designed to expose `pagehide` events to event",
3762 " * handlers that are not necessarily instances of [Window].", 3729 " * handlers that are not necessarily instances of [Window].",
3763 " *", 3730 " *",
3764 " * See [EventStreamProvider] for usage information.", 3731 " * See [EventStreamProvider] for usage information.",
3765 " */" 3732 " */"
3766 ], 3733 ],
3767 "pageshowEvent": [ 3734 "pageshowEvent": [
3768 "/**", 3735 "/**",
3769 " * Static factory designed to expose `pageshow` events to event", 3736 " * Static factory designed to expose `pageshow` events to event",
3770 " * handlers that are not necessarily instances of [Window].", 3737 " * handlers that are not necessarily instances of [Window].",
3771 " *", 3738 " *",
3772 " * See [EventStreamProvider] for usage information.", 3739 " * See [EventStreamProvider] for usage information.",
3773 " */" 3740 " */"
3774 ], 3741 ],
3775 "pageXOffset": [ 3742 "pageXOffset": [
3776 "/**", 3743 "/**",
3777 " * The distance this window has been scrolled horizontally.", 3744 " * The distance this window has been scrolled horizontally.",
3778 " *", 3745 " *",
3779 " * This attribute is an alias for [scrollX].", 3746 " * This attribute is an alias for [scrollX].",
3780 " *", 3747 " *",
3781 " * ## Other resources", 3748 " * ## Other resources",
3782 " *", 3749 " *",
3783 " * * [The Screen interface specification]", 3750 " * * [The Screen interface",
3784 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3751 " * specification](http://www.w3.org/TR/cssom-view/#screen) from W 3C.",
3785 " * * [scrollX and pageXOffset]", 3752 " * * [scrollX and",
3786 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollX ) from MDN.", 3753 " * pageXOffset](https://developer.mozilla.org/en-US/docs/Web/API/ Window.scrollX)",
3754 " * from MDN.",
3787 " */" 3755 " */"
3788 ], 3756 ],
3789 "pageYOffset": [ 3757 "pageYOffset": [
3790 "/**", 3758 "/**",
3791 " * The distance this window has been scrolled vertically.", 3759 " * The distance this window has been scrolled vertically.",
3792 " *", 3760 " *",
3793 " * This attribute is an alias for [scrollY].", 3761 " * This attribute is an alias for [scrollY].",
3794 " *", 3762 " *",
3795 " * ## Other resources", 3763 " * ## Other resources",
3796 " *", 3764 " *",
3797 " * * [The Screen interface specification]", 3765 " * * [The Screen interface",
3798 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3766 " * specification](http://www.w3.org/TR/cssom-view/#screen) from W 3C.",
3799 " * * [scrollY and pageYOffset]", 3767 " * * [scrollY and",
3800 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.scrollY ) from MDN.", 3768 " * pageYOffset](https://developer.mozilla.org/en-US/docs/Web/API/ Window.scrollY)",
3769 " * from MDN.",
3801 " */" 3770 " */"
3802 ], 3771 ],
3803 "performance": [ 3772 "performance": [
3804 "/**", 3773 "/**",
3805 " * Timing and navigation data for this window.", 3774 " * Timing and navigation data for this window.",
3806 " *", 3775 " *",
3807 " * ## Other resources", 3776 " * ## Other resources",
3808 " *", 3777 " *",
3809 " * * [Measuring page load speed with navigation timeing]", 3778 " * * [Measuring page load speed with navigation",
3810 " * (http://www.html5rocks.com/en/tutorials/webperformance/basics/) from", 3779 " * timeing](http://www.html5rocks.com/en/tutorials/webperformance /basics/)",
3811 " * HTML5Rocks.", 3780 " * from HTML5Rocks.",
3812 " * * [Navigation timing specification]", 3781 " * * [Navigation timing",
3813 " * (http://www.w3.org/TR/navigation-timing/) from W3C.", 3782 " * specification](http://www.w3.org/TR/navigation-timing/) from W 3C.",
3814 " */" 3783 " */"
3815 ], 3784 ],
3816 "PERSISTENT": [ 3785 "PERSISTENT": [
3817 "/**", 3786 "/**",
3818 " * Indicates that file system data cannot be cleared unless given u ser", 3787 " * Indicates that file system data cannot be cleared unless given u ser",
3819 " * permission.", 3788 " * permission.",
3820 " *", 3789 " *",
3821 " * ## Other resources", 3790 " * ## Other resources",
3822 " *", 3791 " *",
3823 " * * [Exploring the FileSystem APIs]", 3792 " * * [Exploring the FileSystem",
3824 " * (http://www.html5rocks.com/en/tutorials/file/filesystem/) from H TML5Rocks.", 3793 " * APIs](http://www.html5rocks.com/en/tutorials/file/filesystem/) ",
3825 " * * [File API]", 3794 " * from HTML5Rocks.",
3826 " * (http://www.w3.org/TR/file-system-api/#idl-def-LocalFileSystem) from W3C.", 3795 " * * [File API](http://www.w3.org/TR/file-system-api/#idl-def-Local FileSystem)",
3796 " * from W3C.",
3827 " */" 3797 " */"
3828 ], 3798 ],
3829 "popstateEvent": [ 3799 "popstateEvent": [
3830 "/**", 3800 "/**",
3831 " * Static factory designed to expose `popstate` events to event", 3801 " * Static factory designed to expose `popstate` events to event",
3832 " * handlers that are not necessarily instances of [Window].", 3802 " * handlers that are not necessarily instances of [Window].",
3833 " *", 3803 " *",
3834 " * See [EventStreamProvider] for usage information.", 3804 " * See [EventStreamProvider] for usage information.",
3835 " */" 3805 " */"
3836 ], 3806 ],
3837 "print": [ 3807 "print": [
3838 "/**", 3808 "/**",
3839 " * Opens the print dialog for this window.", 3809 " * Opens the print dialog for this window.",
3840 " *", 3810 " *",
3841 " * ## Other resources", 3811 " * ## Other resources",
3842 " *", 3812 " *",
3843 " * * [Window.print]", 3813 " * * [Window.print](https://developer.mozilla.org/en-US/docs/Web/AP I/Window.print)",
3844 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.print) from MDN.", 3814 " * from MDN.",
3845 " */" 3815 " */"
3846 ], 3816 ],
3847 "resizeBy": [ 3817 "resizeBy": [
3848 "/**", 3818 "/**",
3849 " * Resizes this window by an offset.", 3819 " * Resizes this window by an offset.",
3850 " *", 3820 " *",
3851 " * ## Other resources", 3821 " * ## Other resources",
3852 " *", 3822 " *",
3853 " * * [Window resizeBy] (http://docs.webplatform.org/wiki/dom/method s/resizeBy)", 3823 " * * [Window resizeBy](http://docs.webplatform.org/wiki/dom/methods /resizeBy)",
3854 " * from WebPlatform.org.", 3824 " * from WebPlatform.org.",
3855 " */" 3825 " */"
3856 ], 3826 ],
3857 "resizeEvent": [ 3827 "resizeEvent": [
3858 "/**", 3828 "/**",
3859 " * Static factory designed to expose `resize` events to event", 3829 " * Static factory designed to expose `resize` events to event",
3860 " * handlers that are not necessarily instances of [Window].", 3830 " * handlers that are not necessarily instances of [Window].",
3861 " *", 3831 " *",
3862 " * See [EventStreamProvider] for usage information.", 3832 " * See [EventStreamProvider] for usage information.",
3863 " */" 3833 " */"
3864 ], 3834 ],
3865 "resizeTo": [ 3835 "resizeTo": [
3866 "/**", 3836 "/**",
3867 " * Resizes this window to a specific width and height.", 3837 " * Resizes this window to a specific width and height.",
3868 " *", 3838 " *",
3869 " * ## Other resources", 3839 " * ## Other resources",
3870 " *", 3840 " *",
3871 " * * [Window resizeTo] (http://docs.webplatform.org/wiki/dom/method s/resizeTo)", 3841 " * * [Window resizeTo](http://docs.webplatform.org/wiki/dom/methods /resizeTo)",
3872 " * from WebPlatform.org.", 3842 " * from WebPlatform.org.",
3873 " */" 3843 " */"
3874 ], 3844 ],
3875 "screen": [ 3845 "screen": [
3876 "/**", 3846 "/**",
3877 " * Information about the screen displaying this window.", 3847 " * Information about the screen displaying this window.",
3878 " *", 3848 " *",
3879 " * ## Other resources", 3849 " * ## Other resources",
3880 " *", 3850 " *",
3881 " * * [The Screen interface specification]", 3851 " * * [The Screen interface specification](http://www.w3.org/TR/csso m-view/#screen)",
3882 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3852 " * from W3C.",
3883 " */" 3853 " */"
3884 ], 3854 ],
3885 "screenLeft": [ 3855 "screenLeft": [
3886 "/**", 3856 "/**",
3887 " * The distance from the left side of the screen to the left side o f this", 3857 " * The distance from the left side of the screen to the left side o f this",
3888 " * window.", 3858 " * window.",
3889 " *", 3859 " *",
3890 " * ## Other resources", 3860 " * ## Other resources",
3891 " *", 3861 " *",
3892 " * * [The Screen interface specification]", 3862 " * * [The Screen interface specification](http://www.w3.org/TR/csso m-view/#screen)",
3893 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3863 " * from W3C.",
3894 " */" 3864 " */"
3895 ], 3865 ],
3896 "screenTop": [ 3866 "screenTop": [
3897 "/**", 3867 "/**",
3898 " * The distance from the top of the screen to the top of this windo w.", 3868 " * The distance from the top of the screen to the top of this windo w.",
3899 " *", 3869 " *",
3900 " * ## Other resources", 3870 " * ## Other resources",
3901 " *", 3871 " *",
3902 " * * [The Screen interface specification]", 3872 " * * [The Screen interface specification](http://www.w3.org/TR/csso m-view/#screen)",
3903 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3873 " * from W3C.",
3904 " */" 3874 " */"
3905 ], 3875 ],
3906 "screenX": [ 3876 "screenX": [
3907 "/**", 3877 "/**",
3908 " * The distance from the left side of the screen to the mouse point er.", 3878 " * The distance from the left side of the screen to the mouse point er.",
3909 " *", 3879 " *",
3910 " * ## Other resources", 3880 " * ## Other resources",
3911 " *", 3881 " *",
3912 " * * [The Screen interface specification]", 3882 " * * [The Screen interface specification](http://www.w3.org/TR/csso m-view/#screen)",
3913 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3883 " * from W3C.",
3914 " */" 3884 " */"
3915 ], 3885 ],
3916 "screenY": [ 3886 "screenY": [
3917 "/**", 3887 "/**",
3918 " * The distance from the top of the screen to the mouse pointer.", 3888 " * The distance from the top of the screen to the mouse pointer.",
3919 " *", 3889 " *",
3920 " * ## Other resources", 3890 " * ## Other resources",
3921 " *", 3891 " *",
3922 " * * [The Screen interface specification]", 3892 " * * [The Screen interface specification](http://www.w3.org/TR/csso m-view/#screen)",
3923 " * (http://www.w3.org/TR/cssom-view/#screen) from W3C.", 3893 " * from W3C.",
3924 " */" 3894 " */"
3925 ], 3895 ],
3926 "scroll": [ 3896 "scroll": [
3927 "/**", 3897 "/**",
3928 " * Scrolls the page horizontally and vertically to a specific point .", 3898 " * Scrolls the page horizontally and vertically to a specific point .",
3929 " *", 3899 " *",
3930 " * This method is identical to [scrollTo].", 3900 " * This method is identical to [scrollTo].",
3931 " *", 3901 " *",
3932 " * ## Other resources", 3902 " * ## Other resources",
3933 " *", 3903 " *",
3934 " * * [Window scroll] (http://docs.webplatform.org/wiki/dom/methods/ scroll)", 3904 " * * [Window scroll](http://docs.webplatform.org/wiki/dom/methods/s croll)",
3935 " * from WebPlatform.org.", 3905 " * from WebPlatform.org.",
3936 " */" 3906 " */"
3937 ], 3907 ],
3938 "scrollbars": [ 3908 "scrollbars": [
3939 "/**", 3909 "/**",
3940 " * This window's scroll bars.", 3910 " * This window's scroll bars.",
3941 " *", 3911 " *",
3942 " * ## Other resources", 3912 " * ## Other resources",
3943 " *", 3913 " *",
3944 " * * [Browser interface elements]", 3914 " * * [Browser interface",
3945 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3915 " * elements](https://html.spec.whatwg.org/multipage/browsers.html #browser-interface-elements)",
3946 " * from WHATWG.", 3916 " * from WHATWG.",
3947 " */" 3917 " */"
3948 ], 3918 ],
3949 "scrollBy": [ 3919 "scrollBy": [
3950 "/**", 3920 "/**",
3951 " * Scrolls the page horizontally and vertically by an offset.", 3921 " * Scrolls the page horizontally and vertically by an offset.",
3952 " *", 3922 " *",
3953 " * ## Other resources", 3923 " * ## Other resources",
3954 " *", 3924 " *",
3955 " * * [Window scrollBy] (http://docs.webplatform.org/wiki/dom/method s/scrollBy)", 3925 " * * [Window scrollBy](http://docs.webplatform.org/wiki/dom/methods /scrollBy)",
3956 " * from WebPlatform.org.", 3926 " * from WebPlatform.org.",
3957 " */" 3927 " */"
3958 ], 3928 ],
3959 "scrollTo": [ 3929 "scrollTo": [
3960 "/**", 3930 "/**",
3961 " * Scrolls the page horizontally and vertically to a specific point .", 3931 " * Scrolls the page horizontally and vertically to a specific point .",
3962 " *", 3932 " *",
3963 " * This method is identical to [scroll].", 3933 " * This method is identical to [scroll].",
3964 " *", 3934 " *",
3965 " * ## Other resources", 3935 " * ## Other resources",
3966 " *", 3936 " *",
3967 " * * [Window scrollTo] (http://docs.webplatform.org/wiki/dom/method s/scrollTo)", 3937 " * * [Window scrollTo](http://docs.webplatform.org/wiki/dom/methods /scrollTo)",
3968 " * from WebPlatform.org.", 3938 " * from WebPlatform.org.",
3969 " */" 3939 " */"
3970 ], 3940 ],
3971 "self": [ 3941 "self": [
3972 "/**", 3942 "/**",
3973 " * The current window.", 3943 " * The current window.",
3974 " *", 3944 " *",
3975 " * ## Other resources", 3945 " * ## Other resources",
3976 " *", 3946 " *",
3977 " * * [Window.self]", 3947 " * * [Window.self](https://developer.mozilla.org/en-US/docs/Web/API /Window.self)",
3978 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.self) f rom MDN.", 3948 " * from MDN.",
3979 " */" 3949 " */"
3980 ], 3950 ],
3981 "sessionStorage": [ 3951 "sessionStorage": [
3982 "/**", 3952 "/**",
3983 " * Storage for this window that is cleared when this session ends." , 3953 " * Storage for this window that is cleared when this session ends." ,
3984 " *", 3954 " *",
3985 " * ## Other resources", 3955 " * ## Other resources",
3986 " *", 3956 " *",
3987 " * * [DOM storage guide]", 3957 " * * [DOM storage",
3988 " * (https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Stor age) from", 3958 " * guide](https://developer.mozilla.org/en-US/docs/Web/Guide/API/ DOM/Storage)",
3989 " * MDN.", 3959 " * from MDN.",
3990 " * * [The past, present & future of local storage for web applicati ons]", 3960 " * * [The past, present & future of local storage for web",
3991 " * (http://diveintohtml5.info/storage.html) from Dive Into HTML5.", 3961 " * applications](http://diveintohtml5.info/storage.html) from Div e Into HTML5.",
3992 " * * [Local storage specification]", 3962 " * * [Local storage",
3993 " * (http://www.w3.org/TR/webstorage/#dom-sessionstorage) from W3C." , 3963 " * specification](http://www.w3.org/TR/webstorage/#dom-sessionsto rage) from W3C.",
3994 " */" 3964 " */"
3995 ], 3965 ],
3996 "showModalDialog": [ 3966 "showModalDialog": [
3997 "/**", 3967 "/**",
3998 " * Opens a new page as a modal dialog.", 3968 " * Opens a new page as a modal dialog.",
3999 " *", 3969 " *",
4000 " * ## Other resources", 3970 " * ## Other resources",
4001 " *", 3971 " *",
4002 " * * [Dialogs implemented using separate documents]", 3972 " * * [Dialogs implemented using separate",
4003 " * (http://www.w3.org/html/wg/drafts/html/master/webappapis.html#di alogs-implemented-using-separate-documents)", 3973 " * documents](http://www.w3.org/html/wg/drafts/html/master/webapp apis.html#dialogs-implemented-using-separate-documents)",
4004 " * from W3C.", 3974 " * from W3C.",
4005 " */" 3975 " */"
4006 ], 3976 ],
4007 "speechSynthesis": [ 3977 "speechSynthesis": [
4008 "/**", 3978 "/**",
4009 " * Access to speech synthesis in the browser.", 3979 " * Access to speech synthesis in the browser.",
4010 " *", 3980 " *",
4011 " * ## Other resources", 3981 " * ## Other resources",
4012 " *", 3982 " *",
4013 " * * [Web speech specification]", 3983 " * * [Web speech",
4014 " * (https://dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html#t ts-section)", 3984 " * specification](https://dvcs.w3.org/hg/speech-api/raw-file/tip/ speechapi.html#tts-section)",
4015 " * from W3C.", 3985 " * from W3C.",
4016 " */" 3986 " */"
4017 ], 3987 ],
4018 "status": [ 3988 "status": [
4019 "/// *Deprecated*." 3989 "/// *Deprecated*."
4020 ], 3990 ],
4021 "statusbar": [ 3991 "statusbar": [
4022 "/**", 3992 "/**",
4023 " * This window's status bar.", 3993 " * This window's status bar.",
4024 " *", 3994 " *",
4025 " * ## Other resources", 3995 " * ## Other resources",
4026 " *", 3996 " *",
4027 " * * [Browser interface elements]", 3997 " * * [Browser interface",
4028 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 3998 " * elements](https://html.spec.whatwg.org/multipage/browsers.html #browser-interface-elements)",
4029 " * from WHATWG.", 3999 " * from WHATWG.",
4030 " */" 4000 " */"
4031 ], 4001 ],
4032 "stop": [ 4002 "stop": [
4033 "/**", 4003 "/**",
4034 " * Stops the window from loading.", 4004 " * Stops the window from loading.",
4035 " *", 4005 " *",
4036 " * ## Other resources", 4006 " * ## Other resources",
4037 " *", 4007 " *",
4038 " * * [The Window object]", 4008 " * * [The Window",
4039 " * (http://www.w3.org/html/wg/drafts/html/master/browsers.html#the- window-object)", 4009 " * object](http://www.w3.org/html/wg/drafts/html/master/browsers. html#the-window-object)",
4040 " * from W3C.", 4010 " * from W3C.",
4041 " */" 4011 " */"
4042 ], 4012 ],
4043 "storageEvent": [ 4013 "storageEvent": [
4044 "/**", 4014 "/**",
4045 " * Static factory designed to expose `storage` events to event", 4015 " * Static factory designed to expose `storage` events to event",
4046 " * handlers that are not necessarily instances of [Window].", 4016 " * handlers that are not necessarily instances of [Window].",
4047 " *", 4017 " *",
4048 " * See [EventStreamProvider] for usage information.", 4018 " * See [EventStreamProvider] for usage information.",
4049 " */" 4019 " */"
4050 ], 4020 ],
4051 "styleMedia": [ 4021 "styleMedia": [
4052 "/**", 4022 "/**",
4053 " * Access to CSS media queries.", 4023 " * Access to CSS media queries.",
4054 " *", 4024 " *",
4055 " * ## Other resources", 4025 " * ## Other resources",
4056 " *", 4026 " *",
4057 " * * [StyleMedia class reference]", 4027 " * * [StyleMedia class",
4058 " * (https://developer.apple.com/library/safari/documentation/Safari DOMAdditions/Reference/StyleMedia/StyleMedia/StyleMedia.html)", 4028 " * reference](https://developer.apple.com/library/safari/document ation/SafariDOMAdditions/Reference/StyleMedia/)",
4059 " * from Safari Developer Library.", 4029 " * from Safari Developer Library.",
4060 " */" 4030 " */"
4061 ], 4031 ],
4062 "TEMPORARY": [ 4032 "TEMPORARY": [
4063 "/**", 4033 "/**",
4064 " * Indicates that file system data can be cleared at any time.", 4034 " * Indicates that file system data can be cleared at any time.",
4065 " *", 4035 " *",
4066 " * ## Other resources", 4036 " * ## Other resources",
4067 " *", 4037 " *",
4068 " * * [Exploring the FileSystem APIs]", 4038 " * * [Exploring the FileSystem",
4069 " * (http://www.html5rocks.com/en/tutorials/file/filesystem/) from H TML5Rocks.", 4039 " * APIs](http://www.html5rocks.com/en/tutorials/file/filesystem/) from HTML5Rocks.",
4070 " * * [File API]", 4040 " * * [File API](http://www.w3.org/TR/file-system-api/#idl-def-Local FileSystem)",
4071 " * (http://www.w3.org/TR/file-system-api/#idl-def-LocalFileSystem) from W3C.", 4041 " * from W3C.",
4072 " */" 4042 " */"
4073 ], 4043 ],
4074 "toolbar": [ 4044 "toolbar": [
4075 "/**", 4045 "/**",
4076 " * This window's tool bar.", 4046 " * This window's tool bar.",
4077 " *", 4047 " *",
4078 " * ## Other resources", 4048 " * ## Other resources",
4079 " *", 4049 " *",
4080 " * * [Browser interface elements]", 4050 " * * [Browser interface",
4081 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/bro wsers.html#browser-interface-elements)", 4051 " * elements](https://html.spec.whatwg.org/multipage/browsers.html #browser-interface-elements)",
4082 " * from WHATWG.", 4052 " * from WHATWG.",
4083 " */" 4053 " */"
4084 ], 4054 ],
4085 "unloadEvent": [ 4055 "unloadEvent": [
4086 "/**", 4056 "/**",
4087 " * Static factory designed to expose `unload` events to event", 4057 " * Static factory designed to expose `unload` events to event",
4088 " * handlers that are not necessarily instances of [Window].", 4058 " * handlers that are not necessarily instances of [Window].",
4089 " *", 4059 " *",
4090 " * See [EventStreamProvider] for usage information.", 4060 " * See [EventStreamProvider] for usage information.",
4091 " */" 4061 " */"
4092 ], 4062 ],
(...skipping 20 matching lines...) Expand all
4113 " *", 4083 " *",
4114 " * See [EventStreamProvider] for usage information.", 4084 " * See [EventStreamProvider] for usage information.",
4115 " */" 4085 " */"
4116 ], 4086 ],
4117 "webkitResolveLocalFileSystemURL": [ 4087 "webkitResolveLocalFileSystemURL": [
4118 "/**", 4088 "/**",
4119 " * Asynchronously retrieves a local filesystem entry.", 4089 " * Asynchronously retrieves a local filesystem entry.",
4120 " *", 4090 " *",
4121 " * ## Other resources", 4091 " * ## Other resources",
4122 " *", 4092 " *",
4123 " * * [Obtaining access to file system entry points]", 4093 " * * [Obtaining access to file system entry",
4124 " * (http://www.w3.org/TR/file-system-api/#obtaining-access-to-file- system-entry-points)", 4094 " * points](http://www.w3.org/TR/file-system-api/#obtaining-access -to-file-system-entry-points)",
4125 " * from W3C.", 4095 " * from W3C.",
4126 " */" 4096 " */"
4127 ], 4097 ],
4128 "window": [ 4098 "window": [
4129 "/**", 4099 "/**",
4130 " * The current window.", 4100 " * The current window.",
4131 " *", 4101 " *",
4132 " * ## Other resources", 4102 " * ## Other resources",
4133 " *", 4103 " *",
4134 " * * [Window.window]", 4104 " * * [Window.window](https://developer.mozilla.org/en-US/docs/Web/A PI/Window.window)",
4135 " * (https://developer.mozilla.org/en-US/docs/Web/API/Window.window) from MDN.", 4105 " * from MDN.",
4136 " */" 4106 " */"
4137 ] 4107 ]
4138 } 4108 }
4139 }, 4109 },
4140 "Worker": { 4110 "Worker": {
4141 "members": { 4111 "members": {
4142 "errorEvent": [ 4112 "errorEvent": [
4143 "/**", 4113 "/**",
4144 " * Static factory designed to expose `error` events to event", 4114 " * Static factory designed to expose `error` events to event",
4145 " * handlers that are not necessarily instances of [Worker].", 4115 " * handlers that are not necessarily instances of [Worker].",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
4190 " */" 4160 " */"
4191 ], 4161 ],
4192 "getAllResponseHeaders": [ 4162 "getAllResponseHeaders": [
4193 "/**", 4163 "/**",
4194 " * Retrieve all the response headers from a request.", 4164 " * Retrieve all the response headers from a request.",
4195 " *", 4165 " *",
4196 " * `null` if no headers have been received. For multipart requests, ", 4166 " * `null` if no headers have been received. For multipart requests, ",
4197 " * `getAllResponseHeaders` will return the response headers for the current", 4167 " * `getAllResponseHeaders` will return the response headers for the current",
4198 " * part of the request.", 4168 " * part of the request.",
4199 " *", 4169 " *",
4200 " * See also [HTTP response headers](http://en.wikipedia.org/wiki/Li st_of_HTTP_header_fields#Responses)", 4170 " * See also [HTTP response",
4171 " * headers](https://en.wikipedia.org/wiki/List_of_HTTP_header_field s#Response_fields)",
4201 " * for a list of common response headers.", 4172 " * for a list of common response headers.",
4202 " */" 4173 " */"
4203 ], 4174 ],
4204 "getResponseHeader": [ 4175 "getResponseHeader": [
4205 "/**", 4176 "/**",
4206 " * Return the response header named `header`, or null if not found. ", 4177 " * Return the response header named `header`, or null if not found. ",
4207 " *", 4178 " *",
4208 " * See also [HTTP response headers](http://en.wikipedia.org/wiki/Li st_of_HTTP_header_fields#Responses)", 4179 " * See also [HTTP response",
4180 " * headers](https://en.wikipedia.org/wiki/List_of_HTTP_header_field s#Response_fields)",
4209 " * for a list of common response headers.", 4181 " * for a list of common response headers.",
4210 " */" 4182 " */"
4211 ], 4183 ],
4212 "onreadystatechange": [ 4184 "onreadystatechange": [
4213 "/// Stream of `readystatechange` events handled by this [HttpRequest] .", 4185 "/// Stream of `readystatechange` events handled by this [HttpRequest] .",
4214 "/**", 4186 "/**",
4215 " * Event listeners to be notified every time the [HttpRequest]", 4187 " * Event listeners to be notified every time the [HttpRequest]",
4216 " * object's `readyState` changes values.", 4188 " * object's `readyState` changes values.",
4217 " */" 4189 " */"
4218 ], 4190 ],
(...skipping 13 matching lines...) Expand all
4232 " * `open` method is intended only for more complext HTTP requests w here", 4204 " * `open` method is intended only for more complext HTTP requests w here",
4233 " * finer-grained control is needed.", 4205 " * finer-grained control is needed.",
4234 " */" 4206 " */"
4235 ], 4207 ],
4236 "overrideMimeType": [ 4208 "overrideMimeType": [
4237 "/**", 4209 "/**",
4238 " * Specify a particular MIME type (such as `text/xml`) desired for the", 4210 " * Specify a particular MIME type (such as `text/xml`) desired for the",
4239 " * response.", 4211 " * response.",
4240 " *", 4212 " *",
4241 " * This value must be set before the request has been sent. See als o the list", 4213 " * This value must be set before the request has been sent. See als o the list",
4242 " * of [common MIME types](http://en.wikipedia.org/wiki/Internet_med ia_type#List_of_common_media_types)", 4214 " * of [IANA Official MIME types](https://www.iana.org/assignments/m edia-types/media-types.xhtml)",
4243 " */" 4215 " */"
4244 ], 4216 ],
4245 "readyState": [ 4217 "readyState": [
4246 "/**", 4218 "/**",
4247 " * Indicator of the current state of the request:", 4219 " * Indicator of the current state of the request:",
4248 " *", 4220 " *",
4249 " * <table>", 4221 " * <table>",
4250 " * <tr>", 4222 " * <tr>",
4251 " * <td>Value</td>", 4223 " * <td>Value</td>",
4252 " * <td>State</td>", 4224 " * <td>State</td>",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
4300 ], 4272 ],
4301 "responseType": [ 4273 "responseType": [
4302 "/**", 4274 "/**",
4303 " * [String] telling the server the desired response format.", 4275 " * [String] telling the server the desired response format.",
4304 " *", 4276 " *",
4305 " * Default is `String`.", 4277 " * Default is `String`.",
4306 " * Other options are one of 'arraybuffer', 'blob', 'document', 'jso n',", 4278 " * Other options are one of 'arraybuffer', 'blob', 'document', 'jso n',",
4307 " * 'text'. Some newer browsers will throw NS_ERROR_DOM_INVALID_ACCE SS_ERR if", 4279 " * 'text'. Some newer browsers will throw NS_ERROR_DOM_INVALID_ACCE SS_ERR if",
4308 " * `responseType` is set while performing a synchronous request.", 4280 " * `responseType` is set while performing a synchronous request.",
4309 " *", 4281 " *",
4310 " * See also: [MDN responseType](https://developer.mozilla.org/en-US /docs/DOM/XMLHttpRequest#responseType)", 4282 " * See also: [MDN",
4283 " * responseType](https://developer.mozilla.org/en-US/docs/Web/API/X MLHttpRequest#xmlhttprequest-responsetype)",
4311 " */" 4284 " */"
4312 ], 4285 ],
4313 "responseXML": [ 4286 "responseXML": [
4314 "/**", 4287 "/**",
4315 " * The request response, or null on failure.", 4288 " * The request response, or null on failure.",
4316 " *", 4289 " *",
4317 " * The response is processed as", 4290 " * The response is processed as",
4318 " * `text/xml` stream, unless responseType = 'document' and the requ est is", 4291 " * `text/xml` stream, unless responseType = 'document' and the requ est is",
4319 " * synchronous.", 4292 " * synchronous.",
4320 " */" 4293 " */"
4321 ], 4294 ],
4322 "send": [ 4295 "send": [
4323 "/**", 4296 "/**",
4324 " * Send the request with any given `data`.", 4297 " * Send the request with any given `data`.",
4325 " *", 4298 " *",
4326 " * Note: Most simple HTTP requests can be accomplished using the [g etString],", 4299 " * Note: Most simple HTTP requests can be accomplished using the [g etString],",
4327 " * [request], [requestCrossOrigin], or [postFormData] methods. Use of this", 4300 " * [request], [requestCrossOrigin], or [postFormData] methods. Use of this",
4328 " * `send` method is intended only for more complext HTTP requests w here", 4301 " * `send` method is intended only for more complext HTTP requests w here",
4329 " * finer-grained control is needed.", 4302 " * finer-grained control is needed.",
4330 " *", 4303 " *",
4331 " * ## Other resources", 4304 " * ## Other resources",
4332 " *", 4305 " *",
4333 " * * [XMLHttpRequest.send]", 4306 " * * [XMLHttpRequest.send](https://developer.mozilla.org/en-US/docs /DOM/XMLHttpRequest#send%28%29)",
4334 " * (https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#sen d%28%29)", 4307 " * from MDN.",
4335 " * from MDN.",
4336 " */" 4308 " */"
4337 ], 4309 ],
4338 "setRequestHeader": [ 4310 "setRequestHeader": [
4339 "/**", 4311 "/**",
4340 " * Sets the value of an HTTP requst header.", 4312 " * Sets the value of an HTTP requst header.",
4341 " *", 4313 " *",
4342 " * This method should be called after the request is opened, but be fore", 4314 " * This method should be called after the request is opened, but be fore",
4343 " * the request is sent.", 4315 " * the request is sent.",
4344 " *", 4316 " *",
4345 " * Multiple calls with the same header will combine all their value s into a", 4317 " * Multiple calls with the same header will combine all their value s into a",
4346 " * single header.", 4318 " * single header.",
4347 " *", 4319 " *",
4348 " * ## Other resources", 4320 " * ## Other resources",
4349 " *", 4321 " *",
4350 " * * [XMLHttpRequest.setRequestHeader]", 4322 " * * [XMLHttpRequest.setRequestHeader](https://developer.mozilla.or g/en-US/docs/Web/API/XMLHttpRequest#setRequestHeader())",
4351 " * (https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#sen d%28%29)", 4323 " * from MDN.",
4352 " * from MDN.", 4324 " * * [The setRequestHeader()",
4353 " * * [The setRequestHeader() method]", 4325 " * method](http://www.w3.org/TR/XMLHttpRequest/#the-setrequesthea der()-method)",
4354 " * (http://www.w3.org/TR/XMLHttpRequest/#the-setrequestheader()-met hod) from", 4326 " * from W3C.",
4355 " * W3C.",
4356 " */" 4327 " */"
4357 ], 4328 ],
4358 "status": [ 4329 "status": [
4359 "/**", 4330 "/**",
4360 " * The http result code from the request (200, 404, etc).", 4331 " * The HTTP result code from the request (200, 404, etc).",
4361 " * See also: [Http Status Codes](http://en.wikipedia.org/wiki/List_ of_HTTP_status_codes)", 4332 " * See also: [HTTP Status Codes](http://en.wikipedia.org/wiki/List_ of_HTTP_status_codes)",
4362 " */" 4333 " */"
4363 ], 4334 ],
4364 "statusText": [ 4335 "statusText": [
4365 "/**", 4336 "/**",
4366 " * The request response string (such as \\\"200 OK\\\").", 4337 " * The request response string (such as \\\"200 OK\\\").",
4367 " * See also: [Http Status Codes](http://en.wikipedia.org/wiki/List_ of_HTTP_status_codes)", 4338 " * See also: [HTTP Status Codes](http://en.wikipedia.org/wiki/List_ of_HTTP_status_codes)",
4368 " */" 4339 " */"
4369 ], 4340 ],
4370 "timeout": [ 4341 "timeout": [
4371 "/**", 4342 "/**",
4372 " * Length of time before a request is automatically terminated.", 4343 " * Length of time before a request is automatically terminated.",
4373 " *", 4344 " *",
4374 " * When the time has passed, a [TimeoutEvent] is dispatched.", 4345 " * When the time has passed, a [TimeoutEvent] is dispatched.",
4375 " *", 4346 " *",
4376 " * If [timeout] is set to 0, then the request will not time out.", 4347 " * If [timeout] is set to 0, then the request will not time out.",
4377 " *", 4348 " *",
4378 " * ## Other resources", 4349 " * ## Other resources",
4379 " *", 4350 " *",
4380 " * * [XMLHttpRequest.timeout]", 4351 " * * [XMLHttpRequest.timeout](https://developer.mozilla.org/en-US/d ocs/Web/API/XMLHttpRequest#xmlhttprequest-timeout)",
4381 " * (https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest #timeout)", 4352 " * from MDN.",
4382 " * from MDN.", 4353 " * * [The timeout attribute](http://www.w3.org/TR/XMLHttpRequest/#t he-timeout-attribute)",
4383 " * * [The timeout attribute]", 4354 " * from W3C.",
4384 " * (http://www.w3.org/TR/XMLHttpRequest/#the-timeout-attribute)",
4385 " * from W3C.",
4386 " */" 4355 " */"
4387 ], 4356 ],
4388 "upload": [ 4357 "upload": [
4389 "/**", 4358 "/**",
4390 " * [EventTarget] that can hold listeners to track the progress of t he request.", 4359 " * [EventTarget] that can hold listeners to track the progress of t he request.",
4391 " * The events fired will be members of [HttpRequestUploadEvents].", 4360 " * The events fired will be members of [HttpRequestUploadEvents].",
4392 " */" 4361 " */"
4393 ], 4362 ],
4394 "withCredentials": [ 4363 "withCredentials": [
4395 "/**", 4364 "/**",
(...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after
5260 "/**", 5229 "/**",
5261 " * Atomically update the database version to [newVersion], asynchro nously", 5230 " * Atomically update the database version to [newVersion], asynchro nously",
5262 " * running [callback] on the [SqlTransaction] representing this", 5231 " * running [callback] on the [SqlTransaction] representing this",
5263 " * [changeVersion] transaction.", 5232 " * [changeVersion] transaction.",
5264 " *", 5233 " *",
5265 " * If [callback] runs successfully, then [successCallback] is calle d.", 5234 " * If [callback] runs successfully, then [successCallback] is calle d.",
5266 " * Otherwise, [errorCallback] is called.", 5235 " * Otherwise, [errorCallback] is called.",
5267 " *", 5236 " *",
5268 " * [oldVersion] should match the database's current [version] exact ly.", 5237 " * [oldVersion] should match the database's current [version] exact ly.",
5269 " *", 5238 " *",
5239 " * See also:",
5240 " *",
5270 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 5241 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
5271 " */" 5242 " */"
5272 ] 5243 ]
5273 } 5244 }
5274 } 5245 }
5275 } 5246 }
5276 } 5247 }
OLDNEW
« no previous file with comments | « sdk/lib/web_sql/dart2js/web_sql_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698