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

Side by Side Diff: chrome/test/data/touchevents.html

Issue 2904113002: Replacing WM_TOUCH with WM_POINTER for touch events on Wins 8+ (Closed)
Patch Set: wm touch 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
(Empty)
1 <html>
2 <head>
3 <style>
4 body {
5 margin: 0px;
6 padding: 0px;
7 }
8 #mybox {
9 padding: 20px;
10 margin: 0px;
11 border: 1px solid #000;
12 }
13 #mystatus {
14 border: 1px solid #000;
15 padding: 20px;
16 margin: 0px;
17 }
18 </style>
19 <script>
20 function load() {
21 document.title = "onload";
22 }
23 function pointerdown() {
24 document.title = "pointerdown";
25 }
26 function pointermove() {
27 document.title = "pointermove";
28 }
29 function pointerup() {
30 document.title = "pointerup";
31 }
32 </script>
33 </head>
34 <body onload="load()">
35 <div id="mybox" onpointerdown="pointerdown()" onpointermove="pointermove()" on pointerup="pointerup()"></div>
36 <div id="mystatus"></div>
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698