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

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

Issue 1423973003: Move the Pointer Event extensions of GlobalEventHandlers to a new section (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 [LenientThis] attribute EventHandler onmouseenter; 73 [LenientThis] attribute EventHandler onmouseenter;
74 [LenientThis] attribute EventHandler onmouseleave; 74 [LenientThis] attribute EventHandler onmouseleave;
75 attribute EventHandler onmousemove; 75 attribute EventHandler onmousemove;
76 attribute EventHandler onmouseout; 76 attribute EventHandler onmouseout;
77 attribute EventHandler onmouseover; 77 attribute EventHandler onmouseover;
78 attribute EventHandler onmouseup; 78 attribute EventHandler onmouseup;
79 attribute EventHandler onmousewheel; 79 attribute EventHandler onmousewheel;
80 attribute EventHandler onpause; 80 attribute EventHandler onpause;
81 attribute EventHandler onplay; 81 attribute EventHandler onplay;
82 attribute EventHandler onplaying; 82 attribute EventHandler onplaying;
83 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel;
84 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown;
85 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter;
86 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave;
87 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove;
88 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout;
89 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover;
90 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup;
91 attribute EventHandler onprogress; 83 attribute EventHandler onprogress;
92 attribute EventHandler onratechange; 84 attribute EventHandler onratechange;
93 attribute EventHandler onreset; 85 attribute EventHandler onreset;
94 attribute EventHandler onresize; 86 attribute EventHandler onresize;
95 attribute EventHandler onscroll; 87 attribute EventHandler onscroll;
96 attribute EventHandler onseeked; 88 attribute EventHandler onseeked;
97 attribute EventHandler onseeking; 89 attribute EventHandler onseeking;
98 attribute EventHandler onselect; 90 attribute EventHandler onselect;
99 attribute EventHandler onshow; 91 attribute EventHandler onshow;
100 //attribute EventHandler onsort; 92 //attribute EventHandler onsort;
101 attribute EventHandler onstalled; 93 attribute EventHandler onstalled;
102 attribute EventHandler onsubmit; 94 attribute EventHandler onsubmit;
103 attribute EventHandler onsuspend; 95 attribute EventHandler onsuspend;
104 attribute EventHandler ontimeupdate; 96 attribute EventHandler ontimeupdate;
105 attribute EventHandler ontoggle; 97 attribute EventHandler ontoggle;
106 attribute EventHandler onvolumechange; 98 attribute EventHandler onvolumechange;
107 attribute EventHandler onwaiting; 99 attribute EventHandler onwaiting;
100
101 // Pointer Events
102 // https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandler s-interface
103 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown;
104 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove;
105 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup;
106 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel;
107 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover;
108 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout;
109 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter;
110 [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave;
108 }; 111 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698