mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
Make all arguments to init*Event() optional except the first
This resolves #810.
This commit is contained in:
parent
c582c801da
commit
faa1c5c0af
20 changed files with 175 additions and 169 deletions
|
|
@ -12,12 +12,12 @@ interface ScrollAreaEvent : UIEvent
|
|||
readonly attribute float height;
|
||||
|
||||
void initScrollAreaEvent(DOMString type,
|
||||
boolean canBubble,
|
||||
boolean cancelable,
|
||||
Window? view,
|
||||
long detail,
|
||||
float x,
|
||||
float y,
|
||||
float width,
|
||||
float height);
|
||||
optional boolean canBubble = false,
|
||||
optional boolean cancelable = false,
|
||||
optional Window? view = null,
|
||||
optional long detail = 0,
|
||||
optional float x = 0,
|
||||
optional float y = 0,
|
||||
optional float width = 0,
|
||||
optional float height = 0);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue