pub trait DOMProcessingInstructionExt: 'static {
fn sheet(&self) -> Option<DOMStyleSheet>;
fn target(&self) -> Option<GString>;
fn connect_sheet_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_target_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}