pub trait HTMLStyleElementMethods<D>where
D: DomTypes,{
// Required methods
fn Disabled(&self) -> bool;
fn SetDisabled(&self, value: bool);
fn Media(&self) -> DOMString;
fn SetMedia(&self, value: DOMString);
fn Type(&self) -> DOMString;
fn SetType(&self, value: DOMString);
fn Blocking(
&self,
_can_gc: CanGc,
) -> Root<Dom<<D as DomTypes>::DOMTokenList>>;
fn GetSheet(&self) -> Option<Root<Dom<<D as DomTypes>::StyleSheet>>>;
}