Issue 95: onerror eventhandlers

This issue related to lack of onerror eventhandlers in the sender and receiver objects.  

The proposed resolution is to add them: 

partial interface RTCRtpSender {
                attribute EventHandler?    onerror;
};

partial interface RTCRtpReceiver {
                attribute EventHandler?    onerror;
};

I would note that issues have been filed in bugzilla against WebRTC 1.0 for lack of onerror eventhandlers in some other places (e.g. in DTMF). 

Received on Wednesday, 4 June 2014 19:21:44 UTC