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

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: Fixed primary pointer id on reuse, for each type of Pointers. 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
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 attribute EventHandler onmouseenter; 74 attribute EventHandler onmouseenter;
75 attribute EventHandler onmouseleave; 75 attribute EventHandler onmouseleave;
76 attribute EventHandler onmousemove; 76 attribute EventHandler onmousemove;
77 attribute EventHandler onmouseout; 77 attribute EventHandler onmouseout;
78 attribute EventHandler onmouseover; 78 attribute EventHandler onmouseover;
79 attribute EventHandler onmouseup; 79 attribute EventHandler onmouseup;
80 attribute EventHandler onmousewheel; 80 attribute EventHandler onmousewheel;
81 attribute EventHandler onpause; 81 attribute EventHandler onpause;
82 attribute EventHandler onplay; 82 attribute EventHandler onplay;
83 attribute EventHandler onplaying; 83 attribute EventHandler onplaying;
84 attribute EventHandler onpointercancel;
85 attribute EventHandler onpointerdown;
86 attribute EventHandler onpointerenter;
87 attribute EventHandler onpointerleave;
88 attribute EventHandler onpointermove;
89 attribute EventHandler onpointerout;
90 attribute EventHandler onpointerover;
91 attribute EventHandler onpointerup;
84 attribute EventHandler onprogress; 92 attribute EventHandler onprogress;
85 attribute EventHandler onratechange; 93 attribute EventHandler onratechange;
86 attribute EventHandler onreset; 94 attribute EventHandler onreset;
87 attribute EventHandler onresize; 95 attribute EventHandler onresize;
88 attribute EventHandler onscroll; 96 attribute EventHandler onscroll;
89 attribute EventHandler onseeked; 97 attribute EventHandler onseeked;
90 attribute EventHandler onseeking; 98 attribute EventHandler onseeking;
91 attribute EventHandler onselect; 99 attribute EventHandler onselect;
92 attribute EventHandler onshow; 100 attribute EventHandler onshow;
93 //attribute EventHandler onsort; 101 //attribute EventHandler onsort;
94 attribute EventHandler onstalled; 102 attribute EventHandler onstalled;
95 attribute EventHandler onsubmit; 103 attribute EventHandler onsubmit;
96 attribute EventHandler onsuspend; 104 attribute EventHandler onsuspend;
97 attribute EventHandler ontimeupdate; 105 attribute EventHandler ontimeupdate;
98 attribute EventHandler ontoggle; 106 attribute EventHandler ontoggle;
99 attribute EventHandler onvolumechange; 107 attribute EventHandler onvolumechange;
100 attribute EventHandler onwaiting; 108 attribute EventHandler onwaiting;
101 }; 109 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698