mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +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
|
|
@ -14,12 +14,12 @@ interface DeviceOrientationEvent : Event
|
|||
|
||||
// initDeviceOrientationEvent is a Gecko specific deprecated method.
|
||||
void initDeviceOrientationEvent(DOMString type,
|
||||
boolean canBubble,
|
||||
boolean cancelable,
|
||||
double? alpha,
|
||||
double? beta,
|
||||
double? gamma,
|
||||
boolean absolute);
|
||||
optional boolean canBubble = false,
|
||||
optional boolean cancelable = false,
|
||||
optional double? alpha = null,
|
||||
optional double? beta = null,
|
||||
optional double? gamma = null,
|
||||
optional boolean absolute = false);
|
||||
};
|
||||
|
||||
dictionary DeviceOrientationEventInit : EventInit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue