Update coordinates from type long to double · w3c/touch-events@006274f (original) (raw)

`@@ -253,32 +253,32 @@

Touch Interface

`

253

253

` since moved outside the interactive area of that element.

`

254

254

`

`

255

255

``

256

``

`-

readonly attribute long screenX

`

``

256

`+

readonly attribute double screenX

`

257

257

`

`

258

258

` The horizontal coordinate of point relative to the screen in pixels

`

259

259

`

`

260

``

`-

readonly attribute long screenY

`

``

260

`+

readonly attribute double screenY

`

261

261

`

`

262

262

` The vertical coordinate of point relative to the screen in pixels

`

263

263

`

`

264

264

``

265

``

`-

readonly attribute long clientX

`

``

265

`+

readonly attribute double clientX

`

266

266

`

`

267

267

` The horizontal coordinate of point relative to the viewport in pixels,

`

268

268

` excluding any scroll offset

`

269

269

`

`

270

``

`-

readonly attribute long clientY

`

``

270

`+

readonly attribute double clientY

`

271

271

`

`

272

272

` The vertical coordinate of point relative to the viewport in pixels,

`

273

273

` excluding any scroll offset

`

274

274

`

`

275

275

``

276

``

`-

readonly attribute long pageX

`

``

276

`+

readonly attribute double pageX

`

277

277

`

`

278

278

` The horizontal coordinate of point relative to the viewport in pixels,

`

279

279

` including any scroll offset

`

280

280

`

`

281

``

`-

readonly attribute long pageY

`

``

281

`+

readonly attribute double pageY

`

282

282

`

`

283

283

` The vertical coordinate of point relative to the viewport in pixels,

`

284

284

` including any scroll offset

`

`@@ -675,10 +675,10 @@

Extensions to the Document Interface

`

675

675

`

WindowProxy view

`

676

676

`

EventTarget target

`

677

677

`

long identifier

`

678

``

`-

long pageX

`

679

``

`-

long pageY

`

680

``

`-

long screenX

`

681

``

`-

long screenY

`

``

678

`+

double pageX

`

``

679

`+

double pageY

`

``

680

`+

double screenX

`

``

681

`+

double screenY

`

682

682

`

`

683

683

`

`

684

684

``