pub trait DOMHTMLPreElementExt: 'static {
fn width(&self) -> c_long;
fn wraps(&self) -> bool;
fn set_width(&self, value: c_long);
fn set_wrap(&self, value: bool);
fn connect_width_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_wrap_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}