[webrtc-pc] The RTCDTMFToneChangeEvent constructor should have an optional init dict

foolip has just created a new issue for 
https://github.com/w3c/webrtc-pc:

== The RTCDTMFToneChangeEvent constructor should have an optional init
 dict ==
https://w3c.github.io/webrtc-pc/#rtcdtmftonechangeevent

It would also be good to give `tone` a default value so that it 
doesn't need to be spelled out in prose. In summary:

```WebIDL
[Constructor(DOMString type, optional RTCDTMFToneChangeEventInit 
eventInitDict)]
interface RTCDTMFToneChangeEvent : Event {
    readonly attribute DOMString tone;
};
dictionary RTCDTMFToneChangeEventInit : EventInit {
    DOMString tone = "";
};
```

Please view or discuss this issue at 
https://github.com/w3c/webrtc-pc/issues/816 using your GitHub account

Received on Thursday, 22 September 2016 14:04:23 UTC