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

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

Issue 56423002: Added links and blurb for drag stuff. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 "dblclickEvent": [ 555 "dblclickEvent": [
556 "/**", 556 "/**",
557 " * Static factory designed to expose `doubleclick` events to event" , 557 " * Static factory designed to expose `doubleclick` events to event" ,
558 " * handlers that are not necessarily instances of [Element].", 558 " * handlers that are not necessarily instances of [Element].",
559 " *", 559 " *",
560 " * See [EventStreamProvider] for usage information.", 560 " * See [EventStreamProvider] for usage information.",
561 " */" 561 " */"
562 ], 562 ],
563 "dragendEvent": [ 563 "dragendEvent": [
564 "/**", 564 "/**",
565 " * Static factory designed to expose `dragend` events to event", 565 " * A stream of `dragend` events fired when an element completes a d rag",
566 " * handlers that are not necessarily instances of [Element].", 566 " * operation.",
567 " *", 567 " *",
568 " * See [EventStreamProvider] for usage information.", 568 " * ## Other resources",
569 " *",
570 " * * [Drag and drop sample]",
571 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
572 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
573 " * from HTML5Rocks.",
574 " * * [Drag and drop specification]",
575 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
576 " * from WHATWG.",
569 " */" 577 " */"
570 ], 578 ],
571 "dragenterEvent": [ 579 "dragenterEvent": [
572 "/**", 580 "/**",
573 " * Static factory designed to expose `dragenter` events to event", 581 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged",
574 " * handlers that are not necessarily instances of [Element].", 582 " * over an element.",
575 " *", 583 " *",
576 " * See [EventStreamProvider] for usage information.", 584 " * ## Other resources",
585 " *",
586 " * * [Drag and drop sample]",
587 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
588 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
589 " * from HTML5Rocks.",
590 " * * [Drag and drop specification]",
591 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
592 " * from WHATWG.",
577 " */" 593 " */"
578 ], 594 ],
579 "dragEvent": [ 595 "dragEvent": [
580 "/**", 596 "/**",
581 " * Static factory designed to expose `drag` events to event", 597 " * A stream of `drag` events fired when an element is currently bei ng dragged.",
582 " * handlers that are not necessarily instances of [Element].",
583 " *", 598 " *",
584 " * See [EventStreamProvider] for usage information.", 599 " * A `drag` event is added to this stream as soon as the drag begin s.",
600 " * A `drag` event is also added to this stream at intervals while t he drag",
601 " * operation is still ongoing.",
602 " *",
603 " * ## Other resources",
604 " *",
605 " * * [Drag and drop sample]",
606 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
607 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
608 " * from HTML5Rocks.",
609 " * * [Drag and drop specification]",
610 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
611 " * from WHATWG.",
612 " */"
613 ],
614 "draggable": [
615 "/**",
616 " * Indicates whether the element can be dragged and dropped.",
617 " *",
618 " * ## Other resources",
619 " *",
620 " * * [Drag and drop sample]",
621 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
622 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
623 " * from HTML5Rocks.",
624 " * * [Drag and drop specification]",
625 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
626 " * from WHATWG.",
585 " */" 627 " */"
586 ], 628 ],
587 "dragleaveEvent": [ 629 "dragleaveEvent": [
588 "/**", 630 "/**",
589 " * Static factory designed to expose `dragleave` events to event", 631 " * A stream of `dragleave` events fired when an object being dragge d over an",
590 " * handlers that are not necessarily instances of [Element].", 632 " * element leaves the element's target area.",
591 " *", 633 " *",
592 " * See [EventStreamProvider] for usage information.", 634 " * ## Other resources",
635 " *",
636 " * * [Drag and drop sample]",
637 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
638 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
639 " * from HTML5Rocks.",
640 " * * [Drag and drop specification]",
641 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
642 " * from WHATWG.",
593 " */" 643 " */"
594 ], 644 ],
595 "dragoverEvent": [ 645 "dragoverEvent": [
596 "/**", 646 "/**",
597 " * Static factory designed to expose `dragover` events to event", 647 " * A stream of `dragover` events fired when a dragged object is cur rently",
598 " * handlers that are not necessarily instances of [Element].", 648 " * being dragged over an element.",
599 " *", 649 " *",
600 " * See [EventStreamProvider] for usage information.", 650 " * ## Other resources",
651 " *",
652 " * * [Drag and drop sample]",
653 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
654 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
655 " * from HTML5Rocks.",
656 " * * [Drag and drop specification]",
657 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
658 " * from WHATWG.",
601 " */" 659 " */"
602 ], 660 ],
603 "dragstartEvent": [ 661 "dragstartEvent": [
604 "/**", 662 "/**",
605 " * Static factory designed to expose `dragstart` events to event", 663 " * A stream of `dragstart` events for a dragged element whose drag has begun.",
606 " * handlers that are not necessarily instances of [Element].",
607 " *", 664 " *",
608 " * See [EventStreamProvider] for usage information.", 665 " * ## Other resources",
666 " *",
667 " * * [Drag and drop sample]",
668 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
669 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
670 " * from HTML5Rocks.",
671 " * * [Drag and drop specification]",
672 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
673 " * from WHATWG.",
609 " */" 674 " */"
610 ], 675 ],
611 "dropEvent": [ 676 "dropEvent": [
612 "/**", 677 "/**",
613 " * Static factory designed to expose `drop` events to event", 678 " * A stream of `drop` events fired when a dragged object is dropped on an",
614 " * handlers that are not necessarily instances of [Element].", 679 " * element.",
615 " *", 680 " *",
616 " * See [EventStreamProvider] for usage information.", 681 " * ## Other resources",
682 " *",
683 " * * [Drag and drop sample]",
684 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
685 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
686 " * from HTML5Rocks.",
687 " * * [Drag and drop specification]",
688 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
689 " * from WHATWG.",
617 " */" 690 " */"
618 ], 691 ],
619 "errorEvent": [ 692 "errorEvent": [
620 "/**", 693 "/**",
621 " * Static factory designed to expose `error` events to event", 694 " * Static factory designed to expose `error` events to event",
622 " * handlers that are not necessarily instances of [Element].", 695 " * handlers that are not necessarily instances of [Element].",
623 " *", 696 " *",
624 " * See [EventStreamProvider] for usage information.", 697 " * See [EventStreamProvider] for usage information.",
625 " */" 698 " */"
626 ], 699 ],
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 "oncopy": [ 836 "oncopy": [
764 "/// Stream of `copy` events handled by this [Element]." 837 "/// Stream of `copy` events handled by this [Element]."
765 ], 838 ],
766 "oncut": [ 839 "oncut": [
767 "/// Stream of `cut` events handled by this [Element]." 840 "/// Stream of `cut` events handled by this [Element]."
768 ], 841 ],
769 "ondblclick": [ 842 "ondblclick": [
770 "/// Stream of `doubleclick` events handled by this [Element]." 843 "/// Stream of `doubleclick` events handled by this [Element]."
771 ], 844 ],
772 "ondrag": [ 845 "ondrag": [
773 "/// Stream of `drag` events handled by this [Element]." 846 "/**",
847 " * A stream of `drag` events fired when this element currently bein g dragged.",
848 " *",
849 " * A `drag` event is added to this stream as soon as the drag begin s.",
850 " * A `drag` event is also added to this stream at intervals while t he drag",
851 " * operation is still ongoing.",
852 " *",
853 " * ## Other resources",
854 " *",
855 " * * [Drag and drop sample]",
856 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
857 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
858 " * from HTML5Rocks.",
859 " * * [Drag and drop specification]",
860 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
861 " * from WHATWG.",
862 " */"
774 ], 863 ],
775 "ondragend": [ 864 "ondragend": [
776 "/// Stream of `dragend` events handled by this [Element]." 865 "/**",
866 " * A stream of `dragend` events fired when this element completes a drag",
867 " * operation.",
868 " *",
869 " * ## Other resources",
870 " *",
871 " * * [Drag and drop sample]",
872 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
873 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
874 " * from HTML5Rocks.",
875 " * * [Drag and drop specification]",
876 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
877 " * from WHATWG.",
878 " */"
777 ], 879 ],
778 "ondragenter": [ 880 "ondragenter": [
779 "/// Stream of `dragenter` events handled by this [Element]." 881 "/**",
882 " * A stream of `dragenter` events fired when a dragged object is fi rst dragged",
883 " * over this element.",
884 " *",
885 " * ## Other resources",
886 " *",
887 " * * [Drag and drop sample]",
888 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
889 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
890 " * from HTML5Rocks.",
891 " * * [Drag and drop specification]",
892 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
893 " * from WHATWG.",
894 " */"
780 ], 895 ],
781 "ondragleave": [ 896 "ondragleave": [
782 "/// Stream of `dragleave` events handled by this [Element]." 897 "/**",
898 " * A stream of `dragleave` events fired when an object being dragge d over this",
899 " * element leaves this element's target area.",
900 " *",
901 " * ## Other resources",
902 " *",
903 " * * [Drag and drop sample]",
904 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
905 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
906 " * from HTML5Rocks.",
907 " * * [Drag and drop specification]",
908 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
909 " * from WHATWG.",
910 " */"
783 ], 911 ],
784 "ondragover": [ 912 "ondragover": [
785 "/// Stream of `dragover` events handled by this [Element]." 913 "/**",
914 " * A stream of `dragover` events fired when a dragged object is cur rently",
915 " * being dragged over this element.",
916 " *",
917 " * ## Other resources",
918 " *",
919 " * * [Drag and drop sample]",
920 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
921 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
922 " * from HTML5Rocks.",
923 " * * [Drag and drop specification]",
924 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
925 " * from WHATWG.",
926 " */"
786 ], 927 ],
787 "ondragstart": [ 928 "ondragstart": [
788 "/// Stream of `dragstart` events handled by this [Element]." 929 "/**",
930 " * A stream of `dragstart` events fired when this element starts be ing",
931 " * dragged.",
932 " *",
933 " * ## Other resources",
934 " *",
935 " * * [Drag and drop sample]",
936 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
937 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
938 " * from HTML5Rocks.",
939 " * * [Drag and drop specification]",
940 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
941 " * from WHATWG.",
942 " */"
789 ], 943 ],
790 "ondrop": [ 944 "ondrop": [
791 "/// Stream of `drop` events handled by this [Element]." 945 "/**",
946 " * A stream of `drop` events fired when a dragged object is dropped on this",
947 " * element.",
948 " *",
949 " * ## Other resources",
950 " *",
951 " * * [Drag and drop sample]",
952 " * (https://github.com/dart-lang/dart-samples/tree/master/web/html5 /dnd/basics)",
953 " * based on [the tutorial](http://www.html5rocks.com/en/tutorials/d nd/basics/)",
954 " * from HTML5Rocks.",
955 " * * [Drag and drop specification]",
956 " * (http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd .html#dnd)",
957 " * from WHATWG.",
958 " */"
792 ], 959 ],
793 "onerror": [ 960 "onerror": [
794 "/// Stream of `error` events handled by this [Element]." 961 "/// Stream of `error` events handled by this [Element]."
795 ], 962 ],
796 "onfocus": [ 963 "onfocus": [
797 "/// Stream of `focus` events handled by this [Element]." 964 "/// Stream of `focus` events handled by this [Element]."
798 ], 965 ],
799 "oninput": [ 966 "oninput": [
800 "/// Stream of `input` events handled by this [Element]." 967 "/// Stream of `input` events handled by this [Element]."
801 ], 968 ],
(...skipping 3153 matching lines...) Expand 10 before | Expand all | Expand 10 after
3955 " *", 4122 " *",
3956 " * [oldVersion] should match the database's current [version] exact ly.", 4123 " * [oldVersion] should match the database's current [version] exact ly.",
3957 " *", 4124 " *",
3958 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 4125 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
3959 " */" 4126 " */"
3960 ] 4127 ]
3961 } 4128 }
3962 } 4129 }
3963 } 4130 }
3964 } 4131 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698