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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 attribute EventHandler onshow; | 89 attribute EventHandler onshow; |
90 //attribute EventHandler onsort; | 90 //attribute EventHandler onsort; |
91 attribute EventHandler onstalled; | 91 attribute EventHandler onstalled; |
92 attribute EventHandler onsubmit; | 92 attribute EventHandler onsubmit; |
93 attribute EventHandler onsuspend; | 93 attribute EventHandler onsuspend; |
94 attribute EventHandler ontimeupdate; | 94 attribute EventHandler ontimeupdate; |
95 attribute EventHandler ontoggle; | 95 attribute EventHandler ontoggle; |
96 attribute EventHandler onvolumechange; | 96 attribute EventHandler onvolumechange; |
97 attribute EventHandler onwaiting; | 97 attribute EventHandler onwaiting; |
98 | 98 |
| 99 // auxclick |
| 100 // https://navidz.github.io/auxclick/ |
| 101 [RuntimeEnabled=Auxclick] attribute EventHandler onauxclick; |
| 102 |
99 // Pointer Events | 103 // Pointer Events |
100 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler
s-interface | 104 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler
s-interface |
101 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown; | 105 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown; |
102 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; | 106 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; |
103 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; | 107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; |
104 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; | 108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; |
105 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; | 109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; |
106 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; | 110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; |
107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; | 111 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; |
108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; | 112 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; |
109 | 113 |
110 // Touch Events | 114 // Touch Events |
111 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface | 115 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface |
112 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 116 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
113 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 117 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
114 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 118 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
115 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 119 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
116 }; | 120 }; |
OLD | NEW |