OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. | 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 attribute EventHandler onseeking; | 87 attribute EventHandler onseeking; |
88 attribute EventHandler onselect; | 88 attribute EventHandler onselect; |
89 //attribute EventHandler onsort; | 89 //attribute EventHandler onsort; |
90 attribute EventHandler onstalled; | 90 attribute EventHandler onstalled; |
91 attribute EventHandler onsubmit; | 91 attribute EventHandler onsubmit; |
92 attribute EventHandler onsuspend; | 92 attribute EventHandler onsuspend; |
93 attribute EventHandler ontimeupdate; | 93 attribute EventHandler ontimeupdate; |
94 attribute EventHandler ontoggle; | 94 attribute EventHandler ontoggle; |
95 attribute EventHandler onvolumechange; | 95 attribute EventHandler onvolumechange; |
96 attribute EventHandler onwaiting; | 96 attribute EventHandler onwaiting; |
| 97 attribute EventHandler onwheel; |
97 | 98 |
98 // auxclick | 99 // auxclick |
99 // https://wicg.github.io/auxclick/ | 100 // https://wicg.github.io/auxclick/ |
100 [RuntimeEnabled=Auxclick] attribute EventHandler onauxclick; | 101 [RuntimeEnabled=Auxclick] attribute EventHandler onauxclick; |
101 | 102 |
102 // Pointer Events | 103 // Pointer Events |
103 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler
s-interface | 104 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler
s-interface |
104 attribute EventHandler ongotpointercapture; | 105 attribute EventHandler ongotpointercapture; |
105 attribute EventHandler onlostpointercapture; | 106 attribute EventHandler onlostpointercapture; |
106 attribute EventHandler onpointerdown; | 107 attribute EventHandler onpointerdown; |
107 attribute EventHandler onpointermove; | 108 attribute EventHandler onpointermove; |
108 attribute EventHandler onpointerup; | 109 attribute EventHandler onpointerup; |
109 attribute EventHandler onpointercancel; | 110 attribute EventHandler onpointercancel; |
110 attribute EventHandler onpointerover; | 111 attribute EventHandler onpointerover; |
111 attribute EventHandler onpointerout; | 112 attribute EventHandler onpointerout; |
112 attribute EventHandler onpointerenter; | 113 attribute EventHandler onpointerenter; |
113 attribute EventHandler onpointerleave; | 114 attribute EventHandler onpointerleave; |
114 | 115 |
115 // Touch Events | 116 // Touch Events |
116 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface | 117 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface |
117 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchca
ncel; | 118 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchca
ncel; |
118 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchen
d; | 119 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchen
d; |
119 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchmo
ve; | 120 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchmo
ve; |
120 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchst
art; | 121 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchst
art; |
121 }; | 122 }; |
OLD | NEW |