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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 99 // auxclick |
100 // https://wicg.github.io/auxclick/ | 100 // https://wicg.github.io/auxclick/ |
101 [RuntimeEnabled=Auxclick] attribute EventHandler onauxclick; | 101 [RuntimeEnabled=Auxclick] attribute EventHandler onauxclick; |
102 | 102 |
103 // Pointer Events | 103 // Pointer Events |
104 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler
s-interface | 104 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler
s-interface |
| 105 [RuntimeEnabled=PointerEvent] attribute EventHandler ongotpointercapture; |
| 106 [RuntimeEnabled=PointerEvent] attribute EventHandler onlostpointercapture; |
105 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown; | 107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown; |
106 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; | 108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; |
107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; | 109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; |
108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; | 110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; |
109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; | 111 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; |
110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; | 112 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; |
111 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; | 113 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; |
112 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; | 114 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; |
113 | 115 |
114 // Touch Events | 116 // Touch Events |
115 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface | 117 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface |
116 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchca
ncel; | 118 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchca
ncel; |
117 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchen
d; | 119 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchen
d; |
118 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchmo
ve; | 120 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchmo
ve; |
119 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchst
art; | 121 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchst
art; |
120 }; | 122 }; |
OLD | NEW |