diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-10-04 21:07:48 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-10-04 21:07:48 +0200 |
commit | e42166a5bacbd034538b0df9616eefad5c90e26e (patch) | |
tree | 83adfd9f58cde798a432371c2dc254a25ab8cf31 /dom/webidl/SimpleGestureEvent.webidl | |
parent | 26975ccf5609c787f088e462a72b24bd1a555126 (diff) | |
download | UXP-e42166a5bacbd034538b0df9616eefad5c90e26e.tar UXP-e42166a5bacbd034538b0df9616eefad5c90e26e.tar.gz UXP-e42166a5bacbd034538b0df9616eefad5c90e26e.tar.lz UXP-e42166a5bacbd034538b0df9616eefad5c90e26e.tar.xz UXP-e42166a5bacbd034538b0df9616eefad5c90e26e.zip |
Make all arguments to init*Event() optional except the first
This resolves #810.
Diffstat (limited to 'dom/webidl/SimpleGestureEvent.webidl')
-rw-r--r-- | dom/webidl/SimpleGestureEvent.webidl | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/dom/webidl/SimpleGestureEvent.webidl b/dom/webidl/SimpleGestureEvent.webidl index 0829076dd..76d0d20f6 100644 --- a/dom/webidl/SimpleGestureEvent.webidl +++ b/dom/webidl/SimpleGestureEvent.webidl @@ -25,22 +25,22 @@ interface SimpleGestureEvent : MouseEvent readonly attribute unsigned long clickCount; void initSimpleGestureEvent(DOMString typeArg, - boolean canBubbleArg, - boolean cancelableArg, - Window? viewArg, - long detailArg, - long screenXArg, - long screenYArg, - long clientXArg, - long clientYArg, - boolean ctrlKeyArg, - boolean altKeyArg, - boolean shiftKeyArg, - boolean metaKeyArg, - unsigned short buttonArg, - EventTarget? relatedTargetArg, - unsigned long allowedDirectionsArg, - unsigned long directionArg, - double deltaArg, - unsigned long clickCount); + optional boolean canBubbleArg = false, + optional boolean cancelableArg = false, + optional Window? viewArg = null, + optional long detailArg = 0, + optional long screenXArg = 0, + optional long screenYArg = 0, + optional long clientXArg = 0, + optional long clientYArg = 0, + optional boolean ctrlKeyArg = false, + optional boolean altKeyArg = false, + optional boolean shiftKeyArg = false, + optional boolean metaKeyArg = false, + optional short buttonArg = 0, + optional EventTarget? relatedTargetArg = null, + optional unsigned long allowedDirectionsArg = 0, + optional unsigned long directionArg = 0, + optional double deltaArg = 0, + optional unsigned long clickCount = 0); }; |