pub(crate) trait StyleSheetMethods<D: DomTypes> {
// Required methods
fn Type_(&self) -> DOMString;
fn GetHref(&self) -> Option<DOMString>;
fn GetOwnerNode(&self) -> Option<DomRoot<D::Element>>;
fn GetTitle(&self) -> Option<DOMString>;
fn Media(&self) -> DomRoot<D::MediaList>;
fn Disabled(&self) -> bool;
fn SetDisabled(&self, value: bool);
}