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

Side by Side Diff: core/dom/GlobalEventHandlers.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 years, 11 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 | « core/dom/FocusEvent.idl ('k') | core/dom/HashChangeEvent.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2013, Opera Software ASA. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. Neither the name of Opera Software ASA nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
27 * OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30 [
31 NoInterfaceObject
32 ] interface GlobalEventHandlers {
33 attribute EventHandler onabort;
34 attribute EventHandler onblur;
35 attribute EventHandler oncancel;
36 attribute EventHandler oncanplay;
37 attribute EventHandler oncanplaythrough;
38 attribute EventHandler onchange;
39 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onclick;
40 attribute EventHandler onclose;
41 attribute EventHandler oncontextmenu;
42 attribute EventHandler oncuechange;
43 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondblclick;
44 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondrag;
45 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondragend;
46 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondragenter;
47 //[ActivityLogging=SetterForAllWorlds] attribute EventHandler ondragexit;
48 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondragleave;
49 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondragover;
50 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondragstart;
51 [ActivityLogging=SetterForAllWorlds] attribute EventHandler ondrop;
52 attribute EventHandler ondurationchange;
53 attribute EventHandler onemptied;
54 attribute EventHandler onended;
55 attribute EventHandler onerror;
56 attribute EventHandler onfocus;
57 [ActivityLogging=SetterForAllWorlds] attribute EventHandler oninput;
58 attribute EventHandler oninvalid;
59 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onkeydown;
60 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onkeypress;
61 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onkeyup;
62 attribute EventHandler onload;
63 attribute EventHandler onloadeddata;
64 attribute EventHandler onloadedmetadata;
65 attribute EventHandler onloadstart;
66 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmousedown;
67 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmouseenter;
68 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmouseleave;
69 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmousemove;
70 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmouseout;
71 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmouseover;
72 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmouseup;
73 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onmousewheel;
74 attribute EventHandler onpause;
75 attribute EventHandler onplay;
76 attribute EventHandler onplaying;
77 attribute EventHandler onprogress;
78 attribute EventHandler onratechange;
79 attribute EventHandler onreset;
80 attribute EventHandler onscroll;
81 attribute EventHandler onseeked;
82 attribute EventHandler onseeking;
83 attribute EventHandler onselect;
84 attribute EventHandler onshow;
85 //attribute EventHandler onsort;
86 attribute EventHandler onstalled;
87 attribute EventHandler onsubmit;
88 attribute EventHandler onsuspend;
89 attribute EventHandler ontimeupdate;
90 attribute EventHandler onvolumechange;
91 attribute EventHandler onwaiting;
92 };
OLDNEW
« no previous file with comments | « core/dom/FocusEvent.idl ('k') | core/dom/HashChangeEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698