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

Side by Side Diff: LayoutTests/fast/events/touch/touch-browser-zoom-scales-radius.html

Issue 1159793005: Deprecated webkit-prefixed properties of the Touch interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <script> 5 <script>
6 var radiusX; 6 var radiusX;
7 var radiusY; 7 var radiusY;
8 8
9 function touchHandler(e) { 9 function touchHandler(e) {
10 var touch = e.touches[0]; 10 var touch = e.touches[0];
11 radiusX = touch.webkitRadiusX; 11 radiusX = touch.radiusX;
12 radiusY = touch.webkitRadiusY; 12 radiusY = touch.radiusY;
13 } 13 }
14 14
15 function endTest() 15 function endTest()
16 { 16 {
17 isSuccessfullyParsed(); 17 isSuccessfullyParsed();
18 testRunner.notifyDone(); 18 testRunner.notifyDone();
19 } 19 }
20 20
21 function sendTouchStart(x, y, radiusX, radiusY) 21 function sendTouchStart(x, y, radiusX, radiusY)
22 { 22 {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 debug("This test requires DumpRenderTree. Tap on the blue rect to l og.") 60 debug("This test requires DumpRenderTree. Tap on the blue rect to l og.")
61 } 61 }
62 } 62 }
63 </script> 63 </script>
64 </head> 64 </head>
65 65
66 <body onload="runTest()"> 66 <body onload="runTest()">
67 <div id="console"></div> 67 <div id="console"></div>
68 </body> 68 </body>
69 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698