pub(crate) trait DOMStringListMethods<D: DomTypes> {
// Required methods
fn Length(&self) -> u32;
fn Item(&self, index: u32) -> Option<DOMString>;
fn Contains(&self, string: DOMString) -> bool;
fn IndexedGetter(&self, index: u32) -> Option<DOMString>;
}