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

Side by Side Diff: lib/dom/idl/dart/dart.idl

Issue 10919101: Adding missing media element events. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months 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 | « no previous file | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 FileList implements sequence<File>; 5 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>; 6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>; 7 MediaList implements sequence<DOMString>;
8 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
9 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
10 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 interface HTMLOptionsCollection { 67 interface HTMLOptionsCollection {
68 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before); 68 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before);
69 }; 69 };
70 70
71 [Supplemental] 71 [Supplemental]
72 interface ImageData { 72 interface ImageData {
73 readonly attribute Uint8ClampedArray data; 73 readonly attribute Uint8ClampedArray data;
74 }; 74 };
75 75
76 [Supplemental] 76 [Supplemental]
77 interface HTMLMediaElement {
78 // Adding media events.
79 attribute EventListener oncanplay;
80 attribute EventListener oncanplaythrough;
81 attribute EventListener ondurationchange;
82 attribute EventListener onemptied;
83 attribute EventListener onended;
84 attribute EventListener onloadeddata;
85 attribute EventListener onloadedmetadata;
86 attribute EventListener onloadstart;
87 attribute EventListener onpause;
88 attribute EventListener onplay;
89 attribute EventListener onplaying;
90 attribute EventListener onprogress;
91 attribute EventListener onratechange;
92 attribute EventListener onseeked;
93 attribute EventListener onseeking;
94 attribute EventListener onshow;
95 attribute EventListener onstalled;
96 attribute EventListener onsuspend;
97 attribute EventListener ontimeupdate;
98 attribute EventListener onvolumechange;
99 attribute EventListener onwaiting;
100 };
101
102 [Supplemental]
77 interface WebGLContextEvent { 103 interface WebGLContextEvent {
78 [Suppressed] void initEvent([Optional] in DOMString eventTypeArg, 104 [Suppressed] void initEvent([Optional] in DOMString eventTypeArg,
79 [Optional] in boolean canBubbleArg, 105 [Optional] in boolean canBubbleArg,
80 [Optional] in boolean cancelableArg, 106 [Optional] in boolean cancelableArg,
81 [Optional] in DOMString statusMessageArg); 107 [Optional] in DOMString statusMessageArg);
82 }; 108 };
83 }; 109 };
84 110
85 module html { 111 module html {
86 [Supplemental] 112 [Supplemental]
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 // Suppress the default since it has non-standard return type and add 335 // Suppress the default since it has non-standard return type and add
310 // overrides. 336 // overrides.
311 [Suppressed] boolean send(in DOMString data) raises(DOMException); 337 [Suppressed] boolean send(in DOMString data) raises(DOMException);
312 [Custom] void send(DOMString data) raises(DOMException); 338 [Custom] void send(DOMString data) raises(DOMException);
313 [Custom] void send(Blob data) raises(DOMException); 339 [Custom] void send(Blob data) raises(DOMException);
314 [Custom] void send(ArrayBuffer data) raises(DOMException); 340 [Custom] void send(ArrayBuffer data) raises(DOMException);
315 [Custom] void send(ArrayBufferView data) raises(DOMException); 341 [Custom] void send(ArrayBufferView data) raises(DOMException);
316 }; 342 };
317 } 343 }
318 344
OLDNEW
« no previous file with comments | « no previous file | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698