pub trait DOMHTMLBaseFontElementExt: 'static {
    fn color(&self) -> Option<GString>;
    fn face(&self) -> Option<GString>;
    fn size(&self) -> c_long;
    fn set_color(&self, value: &str);
    fn set_face(&self, value: &str);
    fn set_size(&self, value: c_long);
}
Expand description

Required Methods

This function has been removed from the DOM spec and it just returns None.

Deprecated since 2.12
Returns

A gchar

This function has been removed from the DOM spec and it just returns None.

Deprecated since 2.12
Returns

A gchar

This function has been removed from the DOM spec and it just returns 0.

Deprecated since 2.12
Returns

A glong

This function has been removed from the DOM spec and it does nothing.

Deprecated since 2.12
value

A gchar

This function has been removed from the DOM spec and it does nothing.

Deprecated since 2.12
value

A gchar

This function has been removed from the DOM spec and it does nothing.

Deprecated since 2.12
value

A glong

Implementors