Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Unified Diff: third_party/WebKit/Source/core/events/MouseEventInit.idl

Issue 2406263003: Make PointerEvent coordinates fractional for touch (Closed)
Patch Set: Rebased. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/events/MouseEventInit.idl
diff --git a/third_party/WebKit/Source/core/events/MouseEventInit.idl b/third_party/WebKit/Source/core/events/MouseEventInit.idl
index fa367cbce4484c205fcbd5c7efae598d525e80af..512d249c0dc95c67f0ac68f85c5435687603dde8 100644
--- a/third_party/WebKit/Source/core/events/MouseEventInit.idl
+++ b/third_party/WebKit/Source/core/events/MouseEventInit.idl
@@ -5,10 +5,10 @@
// https://w3c.github.io/uievents/#idl-def-MouseEventInit
dictionary MouseEventInit : EventModifierInit {
- long screenX = 0;
- long screenY = 0;
- long clientX = 0;
- long clientY = 0;
+ double screenX = 0;
+ double screenY = 0;
+ double clientX = 0;
+ double clientY = 0;
short button = 0;
unsigned short buttons = 0;
EventTarget? relatedTarget = null;
« no previous file with comments | « third_party/WebKit/Source/core/events/MouseEvent.idl ('k') | third_party/WebKit/Source/core/events/MouseRelatedEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698