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

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

Issue 12218111: Allowing Window.onBeforeUnload event to work properly. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding support for FireFox Created 7 years, 10 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
OLDNEW
1 // This file introduces / supplements and forces Dart declarations. 1 // This file introduces / supplements and forces Dart declarations.
2 2
3 [Supplemental, 3 [Supplemental,
4 Constructor] 4 Constructor]
5 interface AudioContext {}; 5 interface AudioContext {};
6 6
7 [Supplemental] 7 [Supplemental]
8 interface Document { 8 interface Document {
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
11 }; 11 };
12 12
13 [Supplemental] 13 [Supplemental]
14 interface ScriptProcessorNode { 14 interface ScriptProcessorNode {
15 // FIXME(antonm): provide proper support. 15 // FIXME(antonm): provide proper support.
16 [Suppressed] attribute EventListener onaudioprocess; 16 [Suppressed] attribute EventListener onaudioprocess;
17 }; 17 };
18 18
19 // Force ElementTraversal. WebKit defines these directly. 19 // Force ElementTraversal. WebKit defines these directly.
20 interface ElementTraversal { 20 interface ElementTraversal {
21 readonly attribute unsigned long childElementCount; 21 readonly attribute unsigned long childElementCount;
22 readonly attribute Element firstElementChild; 22 readonly attribute Element firstElementChild;
23 readonly attribute Element lastElementChild; 23 readonly attribute Element lastElementChild;
24 readonly attribute Element nextElementSibling; 24 readonly attribute Element nextElementSibling;
25 readonly attribute Element previousElementSibling; 25 readonly attribute Element previousElementSibling;
26 }; 26 };
27 Element implements ElementTraversal; 27 Element implements ElementTraversal;
28 28
29 [Supplemental]
30 interface Event {
31 [Suppressed] attribute boolean returnValue;
32 attribute any returnValue;
33 };
34
29 [Callback] 35 [Callback]
30 interface TimeoutHandler { 36 interface TimeoutHandler {
31 void handleEvent(); 37 void handleEvent();
32 }; 38 };
33 39
34 [Supplemental] 40 [Supplemental]
35 interface Console { 41 interface Console {
36 [Suppressed] void assert(in boolean condition); 42 [Suppressed] void assert(in boolean condition);
37 [CallWith=ScriptArguments|ScriptState] void assertCondition(boolean condition) ; 43 [CallWith=ScriptArguments|ScriptState] void assertCondition(boolean condition) ;
38 }; 44 };
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 [Suppressed] boolean send(in DOMString data) raises(DOMException); 342 [Suppressed] boolean send(in DOMString data) raises(DOMException);
337 343
338 [Custom] void send(DOMString data) raises(DOMException); 344 [Custom] void send(DOMString data) raises(DOMException);
339 [Custom] void send(Blob data) raises(DOMException); 345 [Custom] void send(Blob data) raises(DOMException);
340 [Custom] void send(ArrayBuffer data) raises(DOMException); 346 [Custom] void send(ArrayBuffer data) raises(DOMException);
341 [Custom] void send(ArrayBufferView data) raises(DOMException); 347 [Custom] void send(ArrayBufferView data) raises(DOMException);
342 }; 348 };
343 349
344 [Suppressed] 350 [Suppressed]
345 interface Entity {}; 351 interface Entity {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698