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

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

Issue 2163893003: Start sending auxclick instead of click for non-primary buttons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another rebase Created 4 years, 4 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/GlobalEventHandlers.h ('k') | third_party/WebKit/Source/core/events/EventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698