Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: third_party/WebKit/Source/core/dom/GlobalEventHandlers.idl

Issue 2921923002: Remove chrome://flag enable-pointer-events (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.idl ('k') | third_party/WebKit/Source/core/events/PointerEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698