pub(crate) trait TextTrackCueListMethods<D: DomTypes> {
// Required methods
fn Length(&self) -> u32;
fn GetCueById(&self, id: DOMString) -> Option<DomRoot<D::TextTrackCue>>;
fn IndexedGetter(&self, index: u32) -> Option<DomRoot<D::TextTrackCue>>;
}