Update coordinates from type long to double · w3c/touch-events@006274f · GitHub
Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
Update coordinates from type long to double
Browse files Browse the repository at this point in the history
  • Loading branch information
RByers committed May 29, 2014
1 parent 207a444 commit 006274f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions touchevents.html
Original file line number Diff line number Diff line change
Expand Up @@ -253,32 +253,32 @@ <h2><a>Touch</a> Interface</h2>
since moved outside the interactive area of that element.
</dd>

<dt>readonly attribute long screenX</dt>
<dt>readonly attribute double screenX</dt>
<dd>
The horizontal coordinate of point relative to the screen in pixels
</dd>
<dt>readonly attribute long screenY</dt>
<dt>readonly attribute double screenY</dt>
<dd>
The vertical coordinate of point relative to the screen in pixels
</dd>

<dt>readonly attribute long clientX</dt>
<dt>readonly attribute double clientX</dt>
<dd>
The horizontal coordinate of point relative to the viewport in pixels,
excluding any scroll offset
</dd>
<dt>readonly attribute long clientY</dt>
<dt>readonly attribute double clientY</dt>
<dd>
The vertical coordinate of point relative to the viewport in pixels,
excluding any scroll offset
</dd>

<dt>readonly attribute long pageX</dt>
<dt>readonly attribute double pageX</dt>
<dd>
The horizontal coordinate of point relative to the viewport in pixels,
including any scroll offset
</dd>
<dt>readonly attribute long pageY</dt>
<dt>readonly attribute double pageY</dt>
<dd>
The vertical coordinate of point relative to the viewport in pixels,
including any scroll offset
Expand Down Expand Up @@ -675,10 +675,10 @@ <h2>Extensions to the <a>Document</a> Interface</h2>
<dt>WindowProxy view</dt> <dd></dd>
<dt>EventTarget target</dt> <dd></dd>
<dt>long identifier</dt> <dd></dd>
<dt>long pageX</dt> <dd></dd>
<dt>long pageY</dt> <dd></dd>
<dt>long screenX</dt> <dd></dd>
<dt>long screenY</dt> <dd></dd>
<dt>double pageX</dt> <dd></dd>
<dt>double pageY</dt> <dd></dd>
<dt>double screenX</dt> <dd></dd>
<dt>double screenY</dt> <dd></dd>
</dl>
</dd>

Expand Down

0 comments on commit 006274f

Please sign in to comment.