diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-20 22:18:52 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-20 22:18:52 +0200 |
commit | 09f456b2808224e7707e51bfab8957ef067154e4 (patch) | |
tree | 95d53f259f5807e2cbee9d455a7629eb4db53c77 /dom/webidl | |
parent | 9b1ba6833410c0b17e885b4bc2b7bff6cf86d5cd (diff) | |
download | UXP-09f456b2808224e7707e51bfab8957ef067154e4.tar UXP-09f456b2808224e7707e51bfab8957ef067154e4.tar.gz UXP-09f456b2808224e7707e51bfab8957ef067154e4.tar.lz UXP-09f456b2808224e7707e51bfab8957ef067154e4.tar.xz UXP-09f456b2808224e7707e51bfab8957ef067154e4.zip |
moebius#71: DOM - Pointer Events - improvements
https://github.com/MoonchildProductions/moebius/pull/71
Diffstat (limited to 'dom/webidl')
-rw-r--r-- | dom/webidl/PointerEvent.webidl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dom/webidl/PointerEvent.webidl b/dom/webidl/PointerEvent.webidl index 2e83922c8..4e8a0eb90 100644 --- a/dom/webidl/PointerEvent.webidl +++ b/dom/webidl/PointerEvent.webidl @@ -17,8 +17,10 @@ interface PointerEvent : MouseEvent readonly attribute long width; readonly attribute long height; readonly attribute float pressure; + readonly attribute float tangentialPressure; readonly attribute long tiltX; readonly attribute long tiltY; + readonly attribute long twist; readonly attribute DOMString pointerType; readonly attribute boolean isPrimary; }; @@ -29,8 +31,10 @@ dictionary PointerEventInit : MouseEventInit long width = 1; long height = 1; float pressure = 0; + float tangentialPressure = 0; long tiltX = 0; long tiltY = 0; + long twist = 0; DOMString pointerType = ""; boolean isPrimary = false; }; |