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

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

Issue 1144313003: Added PointerEvent firing on touch events. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. TODO fixes. Created 5 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
« no previous file with comments | « Source/core/dom/GlobalEventHandlers.h ('k') | Source/core/dom/Node.h » ('j') | 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 attribute EventHandler onpointercancel;
84 attribute EventHandler onpointerdown;
85 attribute EventHandler onpointerenter;
86 attribute EventHandler onpointerleave;
87 attribute EventHandler onpointermove;
88 attribute EventHandler onpointerout;
89 attribute EventHandler onpointerover;
90 attribute EventHandler onpointerup;
83 attribute EventHandler onprogress; 91 attribute EventHandler onprogress;
84 attribute EventHandler onratechange; 92 attribute EventHandler onratechange;
85 attribute EventHandler onreset; 93 attribute EventHandler onreset;
86 attribute EventHandler onresize; 94 attribute EventHandler onresize;
87 attribute EventHandler onscroll; 95 attribute EventHandler onscroll;
88 attribute EventHandler onseeked; 96 attribute EventHandler onseeked;
89 attribute EventHandler onseeking; 97 attribute EventHandler onseeking;
90 attribute EventHandler onselect; 98 attribute EventHandler onselect;
91 attribute EventHandler onshow; 99 attribute EventHandler onshow;
92 //attribute EventHandler onsort; 100 //attribute EventHandler onsort;
93 attribute EventHandler onstalled; 101 attribute EventHandler onstalled;
94 attribute EventHandler onsubmit; 102 attribute EventHandler onsubmit;
95 attribute EventHandler onsuspend; 103 attribute EventHandler onsuspend;
96 attribute EventHandler ontimeupdate; 104 attribute EventHandler ontimeupdate;
97 attribute EventHandler ontoggle; 105 attribute EventHandler ontoggle;
98 attribute EventHandler onvolumechange; 106 attribute EventHandler onvolumechange;
99 attribute EventHandler onwaiting; 107 attribute EventHandler onwaiting;
100 }; 108 };
OLDNEW
« no previous file with comments | « Source/core/dom/GlobalEventHandlers.h ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698