Re: [w3c/uievents] Require support or non-support for legacy init*Event (#112)

Concretely, this is what Blink would look like if making only the first argument required:
```WebIDL
void initKeyboardEvent(DOMString type,
                       optional boolean bubbles = false,
                       optional boolean cancelable = false,
                       optional Window? view = null,
                       optional DOMString keyIdentifier = "",
                       optional unsigned long location = 0,
                       optional boolean ctrlKey = false,
                       optional boolean altKey = false,
                       optional boolean shiftKey = false,
                       optional boolean metaKey = false);
```
Would that work for Gecko?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/uievents/issues/112#issuecomment-257848432

Received on Wednesday, 2 November 2016 12:18:29 UTC