ACTION-81 - Minor editorial changes, added units for properties in Touch interface v1
authorSangwhan Moon <smoon@opera.com>
Thu, 13 Oct 2011 02:13:50 +0900
branchv1
changeset 123 bee004414dba
parent 121 df403a9b8ba6
child 124 a8b5ef36b865
ACTION-81 - Minor editorial changes, added units for properties in Touch interface
touchevents.html
--- a/touchevents.html	Mon Oct 10 13:58:47 2011 -0400
+++ 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>
       </dl>
     </section>