ACTION-81 - Minor editorial changes, added units for properties in Touch interface
authorSangwhan Moon <smoon@opera.com>
Thu, 13 Oct 2011 02:13:50 +0900
changeset 127 47052fc0aaa1
parent 125 db70f053a525
child 128 82bdd046bb67
ACTION-81 - Minor editorial changes, added units for properties in Touch interface
touchevents.html
--- a/touchevents.html	Thu Oct 13 14:09:34 2011 -0700
+++ b/touchevents.html	Thu Oct 13 02:13:50 2011 +0900
@@ -171,33 +171,33 @@
 
         <dt>readonly attribute long screenX</dt>
         <dd>
-          x-coordinate of point relative to the screen
+          The horizontal coordinate of point relative to the screen in pixels
         </dd>
         <dt>readonly attribute long screenY</dt>
         <dd>
-          y-coordinate of point relative to the screen
+          The vertical coordinate of point relative to the screen in pixels
         </dd>
 
         <dt>readonly attribute long clientX</dt>
         <dd>
-          x-coordinate of point relative to the viewport, excluding any scroll
-          offset
+          The horizontal coordinate of point relative to the viewport in pixels,
+          excluding any scroll offset
         </dd>
         <dt>readonly attribute long clientY</dt>
         <dd>
-          y-coordinate of point relative to the viewport, excluding any scroll
-          offset
+          The vertical coordinate of point relative to the viewport in pixels,
+          excluding any scroll offset
         </dd>
 
         <dt>readonly attribute long pageX</dt>
         <dd>
-          x-coordinate of point relative to the viewport, including any scroll
-          offset
+          The horizontal coordinate of point relative to the viewport in pixels,
+          including any scroll offset
         </dd>
         <dt>readonly attribute long pageY</dt>
         <dd>
-          y-coordinate of point relative to the viewport, including any scroll
-          offset
+          The vertical coordinate of point relative to the viewport in pixels,
+          including any scroll offset
         </dd>
 
         <dt>readonly attribute long radiusX</dt>