diff --git a/webrtc.html b/webrtc.html index 348e94c52..9bb822275 100644 --- a/webrtc.html +++ b/webrtc.html @@ -17402,8 +17402,7 @@

  • Set all {{RTCError}} attributes of e to the - value of the corresponding attribute in init if - it is [=map/exists|present=], otherwise set it to null. + value of the corresponding attribute in init.

  • @@ -17497,10 +17496,10 @@

    dictionary RTCErrorInit {
       required RTCErrorDetailType errorDetail;
    -  long sdpLineNumber;
    -  long sctpCauseCode;
    -  unsigned long receivedAlert;
    -  unsigned long sentAlert;
    +  long? sdpLineNumber = null;
    +  long? sctpCauseCode = null;
    +  unsigned long? receivedAlert = null;
    +  unsigned long? sentAlert = null;
     };

    The errorDetail,