| 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; | 105 attribute EventHandler ongotpointercapture; |
| 106 [RuntimeEnabled=PointerEvent] attribute EventHandler onlostpointercapture; | 106 attribute EventHandler onlostpointercapture; |
| 107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown; | 107 attribute EventHandler onpointerdown; |
| 108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; | 108 attribute EventHandler onpointermove; |
| 109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; | 109 attribute EventHandler onpointerup; |
| 110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; | 110 attribute EventHandler onpointercancel; |
| 111 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; | 111 attribute EventHandler onpointerover; |
| 112 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; | 112 attribute EventHandler onpointerout; |
| 113 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; | 113 attribute EventHandler onpointerenter; |
| 114 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; | 114 attribute EventHandler onpointerleave; |
| 115 | 115 |
| 116 // Touch Events | 116 // Touch Events |
| 117 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface | 117 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface |
| 118 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchca
ncel; | 118 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchca
ncel; |
| 119 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchen
d; | 119 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchen
d; |
| 120 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchmo
ve; | 120 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchmo
ve; |
| 121 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchst
art; | 121 [RuntimeEnabled=TouchEventFeatureDetection] attribute EventHandler ontouchst
art; |
| 122 }; | 122 }; |
| OLD | NEW |