pub trait DOMStyleSheetExt: 'static {
Show 16 methods
fn content_type(&self) -> Option<GString>;
fn is_disabled(&self) -> bool;
fn href(&self) -> Option<GString>;
fn media(&self) -> Option<DOMMediaList>;
fn owner_node(&self) -> Option<DOMNode>;
fn parent_style_sheet(&self) -> Option<DOMStyleSheet>;
fn title(&self) -> Option<GString>;
fn set_disabled(&self, value: bool);
fn type_(&self) -> Option<GString>;
fn connect_disabled_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_href_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_media_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_owner_node_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_parent_style_sheet_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_type_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}