| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; | 106 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove; |
| 107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; | 107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup; |
| 108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; | 108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel; |
| 109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; | 109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover; |
| 110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; | 110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout; |
| 111 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; | 111 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter; |
| 112 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; | 112 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave; |
| 113 | 113 |
| 114 // Touch Events | 114 // Touch Events |
| 115 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface | 115 // https://w3c.github.io/touch-events/#extensions-to-the-globaleventhandlers
-interface |
| 116 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 116 [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchcancel; |
| 117 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 117 [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchend; |
| 118 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 118 [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchmove; |
| 119 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 119 [RuntimeEnabled=TouchEventAPI] attribute EventHandler ontouchstart; |
| 120 }; | 120 }; |
| OLD | NEW |