2.1.7 [W3C-MEDIA-SOURCE] Section 8. VideoTrack Extensions

V0010: The sourceBuffer attribute is not defined as nullable

The specification states:

 7. AudioTrack Extensions
  
 This section specifies extensions to the HTML AudioTrack definition.
  
     partial interface AudioTrack {
         readonly attribute SourceBuffer? sourceBuffer;
     };
  
 8. VideoTrack Extensions
  
 This section specifies extensions to the HTML VideoTrack definition.
  
     partial interface VideoTrack {
         readonly attribute SourceBuffer? sourceBuffer;
     };

EdgeHTML Mode

The sourceBuffer attribute is not defined as nullable.

    partial interface AudioTrack {

        readonly attribute SourceBuffer sourceBuffer;

    };

    partial interface VideoTrack {

        readonly attribute SourceBuffer sourceBuffer;

    };