pub trait DOMHTMLFontElementExt: 'static {
fn color(&self) -> Option<GString>;
fn face(&self) -> Option<GString>;
fn size(&self) -> Option<GString>;
fn set_color(&self, value: &str);
fn set_face(&self, value: &str);
fn set_size(&self, value: &str);
fn connect_color_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_face_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_size_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}