[w3c/uievents] Specify the arguments of initCompositionEvent() (#134)

`initCompositionEvent()` is supported in Blink, EdgeHTML, Gecko and WebKit. Usage is [very low](https://www.chromestatus.com/metrics/feature/timeline/popularity/863) but it's still not a good use of time trying to remove it from all engines.

Instead, specify it like this:
```WebIDL
void initCompositionEvent(DOMString type,
                          optional boolean bubbles = false,
                          optional boolean cancelable = false,
                          optional Window? view = null,
                          optional DOMString data = "");
```

See also https://github.com/whatwg/dom/issues/387

-- 
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/134

Received on Thursday, 23 February 2017 03:35:43 UTC