[][src]Trait webkit2gtk_webextension::DOMDocumentExt

pub trait DOMDocumentExt: 'static {
    fn adopt_node<P: IsA<DOMNode>>(&self, source: &P) -> Result<DOMNode, Error>;
fn create_attribute(&self, name: &str) -> Result<DOMAttr, Error>;
fn create_attribute_ns(
        &self,
        namespaceURI: Option<&str>,
        qualifiedName: &str
    ) -> Result<DOMAttr, Error>;
fn create_cdata_section(&self, data: &str) -> Result<DOMCDATASection, Error>;
fn create_comment(&self, data: &str) -> Option<DOMComment>;
fn create_css_style_declaration(&self) -> Option<DOMCSSStyleDeclaration>;
fn create_element(&self, tagName: &str) -> Result<DOMElement, Error>;
fn create_element_ns(
        &self,
        namespaceURI: Option<&str>,
        qualifiedName: &str
    ) -> Result<DOMElement, Error>;
fn create_entity_reference(
        &self,
        name: Option<&str>
    ) -> Result<DOMEntityReference, Error>;
fn create_event(&self, eventType: &str) -> Result<DOMEvent, Error>;
fn create_processing_instruction(
        &self,
        target: &str,
        data: &str
    ) -> Result<DOMProcessingInstruction, Error>;
fn create_range(&self) -> Option<DOMRange>;
fn create_text_node(&self, data: &str) -> Option<DOMText>;
fn element_from_point(&self, x: c_long, y: c_long) -> Option<DOMElement>;
fn exec_command(
        &self,
        command: &str,
        userInterface: bool,
        value: &str
    ) -> bool;
fn get_active_element(&self) -> Option<DOMElement>;
fn get_anchors(&self) -> Option<DOMHTMLCollection>;
fn get_applets(&self) -> Option<DOMHTMLCollection>;
fn get_body(&self) -> Option<DOMHTMLElement>;
fn get_character_set(&self) -> Option<GString>;
fn get_charset(&self) -> Option<GString>;
fn get_cookie(&self) -> Result<GString, Error>;
fn get_default_charset(&self) -> Option<GString>;
fn get_default_view(&self) -> Option<DOMDOMWindow>;
fn get_doctype(&self) -> Option<DOMDocumentType>;
fn get_document_element(&self) -> Option<DOMElement>;
fn get_document_uri(&self) -> Option<GString>;
fn get_domain(&self) -> Option<GString>;
fn get_element_by_id(&self, elementId: &str) -> Option<DOMElement>;
fn get_elements_by_class_name(
        &self,
        class_name: &str
    ) -> Option<DOMNodeList>;
fn get_elements_by_name(&self, elementName: &str) -> Option<DOMNodeList>;
fn get_elements_by_tag_name(&self, tag_name: &str) -> Option<DOMNodeList>;
fn get_elements_by_tag_name_ns(
        &self,
        namespace_uri: &str,
        tag_name: &str
    ) -> Option<DOMNodeList>;
fn get_forms(&self) -> Option<DOMHTMLCollection>;
fn get_head(&self) -> Option<DOMHTMLHeadElement>;
fn get_images(&self) -> Option<DOMHTMLCollection>;
fn get_implementation(&self) -> Option<DOMDOMImplementation>;
fn get_input_encoding(&self) -> Option<GString>;
fn get_last_modified(&self) -> Option<GString>;
fn get_links(&self) -> Option<DOMHTMLCollection>;
fn get_override_style<P: IsA<DOMElement>>(
        &self,
        element: &P,
        pseudoElement: Option<&str>
    ) -> Option<DOMCSSStyleDeclaration>;
fn get_preferred_stylesheet_set(&self) -> Option<GString>;
fn get_ready_state(&self) -> Option<GString>;
fn get_referrer(&self) -> Option<GString>;
fn get_selected_stylesheet_set(&self) -> Option<GString>;
fn get_style_sheets(&self) -> Option<DOMStyleSheetList>;
fn get_title(&self) -> Option<GString>;
fn get_url(&self) -> Option<GString>;
fn get_xml_encoding(&self) -> Option<GString>;
fn get_xml_standalone(&self) -> bool;
fn get_xml_version(&self) -> Option<GString>;
fn has_focus(&self) -> bool;
fn import_node<P: IsA<DOMNode>>(
        &self,
        importedNode: &P,
        deep: bool
    ) -> Result<DOMNode, Error>;
fn query_command_enabled(&self, command: &str) -> bool;
fn query_command_indeterm(&self, command: &str) -> bool;
fn query_command_state(&self, command: &str) -> bool;
fn query_command_supported(&self, command: &str) -> bool;
fn query_command_value(&self, command: &str) -> Option<GString>;
fn query_selector(&self, selectors: &str) -> Result<DOMElement, Error>;
fn query_selector_all(&self, selectors: &str) -> Result<DOMNodeList, Error>;
fn set_body<P: IsA<DOMHTMLElement>>(&self, value: &P) -> Result<(), Error>;
fn set_charset(&self, value: &str);
fn set_cookie(&self, value: &str) -> Result<(), Error>;
fn set_document_uri(&self, value: &str);
fn set_selected_stylesheet_set(&self, value: &str);
fn set_title(&self, value: &str);
fn set_xml_standalone(&self, value: bool) -> Result<(), Error>;
fn set_xml_version(&self, value: &str) -> Result<(), Error>;
fn get_property_child_element_count(&self) -> c_ulong;
fn get_property_children(&self) -> Option<DOMHTMLCollection>;
fn get_property_compat_mode(&self) -> Option<GString>;
fn get_property_content_type(&self) -> Option<GString>;
fn get_property_current_script(&self) -> Option<DOMHTMLScriptElement>;
fn get_property_design_mode(&self) -> Option<GString>;
fn set_property_design_mode(&self, design_mode: Option<&str>);
fn get_property_dir(&self) -> Option<GString>;
fn set_property_dir(&self, dir: Option<&str>);
fn get_property_embeds(&self) -> Option<DOMHTMLCollection>;
fn get_property_first_element_child(&self) -> Option<DOMElement>;
fn get_property_hidden(&self) -> bool;
fn get_property_last_element_child(&self) -> Option<DOMElement>;
fn get_property_origin(&self) -> Option<GString>;
fn get_property_plugins(&self) -> Option<DOMHTMLCollection>;
fn get_property_pointer_lock_element(&self) -> Option<DOMElement>;
fn get_property_scripts(&self) -> Option<DOMHTMLCollection>;
fn get_property_scrolling_element(&self) -> Option<DOMElement>;
fn get_property_visibility_state(&self) -> Option<GString>;
fn get_property_webkit_current_full_screen_element(
        &self
    ) -> Option<DOMElement>;
fn get_property_webkit_full_screen_keyboard_input_allowed(&self) -> bool;
fn get_property_webkit_fullscreen_element(&self) -> Option<DOMElement>;
fn get_property_webkit_fullscreen_enabled(&self) -> bool;
fn get_property_webkit_is_full_screen(&self) -> bool;
fn connect_property_active_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_anchors_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_applets_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_body_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_character_set_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_charset_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_child_element_count_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_children_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_compat_mode_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_content_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_cookie_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_current_script_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_default_view_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_design_mode_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_dir_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_doctype_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_document_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_document_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_domain_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_embeds_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_first_element_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_forms_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_head_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_hidden_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_images_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_implementation_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_input_encoding_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_last_element_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_last_modified_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_links_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_origin_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_plugins_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_pointer_lock_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_preferred_stylesheet_set_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_ready_state_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_referrer_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_scripts_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_scrolling_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_selected_stylesheet_set_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_style_sheets_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_url_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_visibility_state_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_webkit_current_full_screen_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_webkit_full_screen_keyboard_input_allowed_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_webkit_fullscreen_element_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_webkit_fullscreen_enabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_webkit_is_full_screen_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_xml_encoding_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_xml_standalone_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_xml_version_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn adopt_node<P: IsA<DOMNode>>(&self, source: &P) -> Result<DOMNode, Error>

fn create_attribute(&self, name: &str) -> Result<DOMAttr, Error>

fn create_attribute_ns(
    &self,
    namespaceURI: Option<&str>,
    qualifiedName: &str
) -> Result<DOMAttr, Error>

fn create_cdata_section(&self, data: &str) -> Result<DOMCDATASection, Error>

fn create_comment(&self, data: &str) -> Option<DOMComment>

fn create_css_style_declaration(&self) -> Option<DOMCSSStyleDeclaration>

fn create_element(&self, tagName: &str) -> Result<DOMElement, Error>

fn create_element_ns(
    &self,
    namespaceURI: Option<&str>,
    qualifiedName: &str
) -> Result<DOMElement, Error>

fn create_entity_reference(
    &self,
    name: Option<&str>
) -> Result<DOMEntityReference, Error>

fn create_event(&self, eventType: &str) -> Result<DOMEvent, Error>

fn create_processing_instruction(
    &self,
    target: &str,
    data: &str
) -> Result<DOMProcessingInstruction, Error>

fn create_range(&self) -> Option<DOMRange>

fn create_text_node(&self, data: &str) -> Option<DOMText>

fn element_from_point(&self, x: c_long, y: c_long) -> Option<DOMElement>

fn exec_command(&self, command: &str, userInterface: bool, value: &str) -> bool

fn get_active_element(&self) -> Option<DOMElement>

fn get_anchors(&self) -> Option<DOMHTMLCollection>

fn get_applets(&self) -> Option<DOMHTMLCollection>

fn get_body(&self) -> Option<DOMHTMLElement>

fn get_character_set(&self) -> Option<GString>

fn get_charset(&self) -> Option<GString>

fn get_default_charset(&self) -> Option<GString>

fn get_default_view(&self) -> Option<DOMDOMWindow>

fn get_doctype(&self) -> Option<DOMDocumentType>

fn get_document_element(&self) -> Option<DOMElement>

fn get_document_uri(&self) -> Option<GString>

fn get_domain(&self) -> Option<GString>

fn get_element_by_id(&self, elementId: &str) -> Option<DOMElement>

fn get_elements_by_class_name(&self, class_name: &str) -> Option<DOMNodeList>

fn get_elements_by_name(&self, elementName: &str) -> Option<DOMNodeList>

fn get_elements_by_tag_name(&self, tag_name: &str) -> Option<DOMNodeList>

fn get_elements_by_tag_name_ns(
    &self,
    namespace_uri: &str,
    tag_name: &str
) -> Option<DOMNodeList>

fn get_forms(&self) -> Option<DOMHTMLCollection>

fn get_head(&self) -> Option<DOMHTMLHeadElement>

fn get_images(&self) -> Option<DOMHTMLCollection>

fn get_implementation(&self) -> Option<DOMDOMImplementation>

fn get_input_encoding(&self) -> Option<GString>

fn get_last_modified(&self) -> Option<GString>

fn get_override_style<P: IsA<DOMElement>>(
    &self,
    element: &P,
    pseudoElement: Option<&str>
) -> Option<DOMCSSStyleDeclaration>

fn get_preferred_stylesheet_set(&self) -> Option<GString>

fn get_ready_state(&self) -> Option<GString>

fn get_referrer(&self) -> Option<GString>

fn get_selected_stylesheet_set(&self) -> Option<GString>

fn get_style_sheets(&self) -> Option<DOMStyleSheetList>

fn get_title(&self) -> Option<GString>

fn get_url(&self) -> Option<GString>

fn get_xml_encoding(&self) -> Option<GString>

fn get_xml_standalone(&self) -> bool

fn get_xml_version(&self) -> Option<GString>

fn has_focus(&self) -> bool

fn import_node<P: IsA<DOMNode>>(
    &self,
    importedNode: &P,
    deep: bool
) -> Result<DOMNode, Error>

fn query_command_enabled(&self, command: &str) -> bool

fn query_command_indeterm(&self, command: &str) -> bool

fn query_command_state(&self, command: &str) -> bool

fn query_command_supported(&self, command: &str) -> bool

fn query_command_value(&self, command: &str) -> Option<GString>

fn query_selector(&self, selectors: &str) -> Result<DOMElement, Error>

fn query_selector_all(&self, selectors: &str) -> Result<DOMNodeList, Error>

fn set_body<P: IsA<DOMHTMLElement>>(&self, value: &P) -> Result<(), Error>

fn set_charset(&self, value: &str)

fn set_document_uri(&self, value: &str)

fn set_selected_stylesheet_set(&self, value: &str)

fn set_title(&self, value: &str)

fn set_xml_standalone(&self, value: bool) -> Result<(), Error>

fn set_xml_version(&self, value: &str) -> Result<(), Error>

fn get_property_child_element_count(&self) -> c_ulong

fn get_property_children(&self) -> Option<DOMHTMLCollection>

fn get_property_compat_mode(&self) -> Option<GString>

fn get_property_content_type(&self) -> Option<GString>

fn get_property_current_script(&self) -> Option<DOMHTMLScriptElement>

fn get_property_design_mode(&self) -> Option<GString>

fn set_property_design_mode(&self, design_mode: Option<&str>)

fn get_property_dir(&self) -> Option<GString>

fn set_property_dir(&self, dir: Option<&str>)

fn get_property_embeds(&self) -> Option<DOMHTMLCollection>

fn get_property_first_element_child(&self) -> Option<DOMElement>

fn get_property_hidden(&self) -> bool

fn get_property_last_element_child(&self) -> Option<DOMElement>

fn get_property_origin(&self) -> Option<GString>

fn get_property_plugins(&self) -> Option<DOMHTMLCollection>

fn get_property_pointer_lock_element(&self) -> Option<DOMElement>

fn get_property_scripts(&self) -> Option<DOMHTMLCollection>

fn get_property_scrolling_element(&self) -> Option<DOMElement>

fn get_property_visibility_state(&self) -> Option<GString>

fn get_property_webkit_current_full_screen_element(&self) -> Option<DOMElement>

fn get_property_webkit_full_screen_keyboard_input_allowed(&self) -> bool

fn get_property_webkit_fullscreen_element(&self) -> Option<DOMElement>

fn get_property_webkit_fullscreen_enabled(&self) -> bool

fn get_property_webkit_is_full_screen(&self) -> bool

fn connect_property_active_element_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_anchors_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_applets_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_body_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_character_set_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_charset_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_child_element_count_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_children_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_compat_mode_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_content_type_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_current_script_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_default_view_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_design_mode_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_dir_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_doctype_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_document_element_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_document_uri_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_domain_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_embeds_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_first_element_child_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_forms_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_head_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_hidden_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_images_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_implementation_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_input_encoding_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_last_element_child_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_last_modified_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_origin_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_plugins_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_pointer_lock_element_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_preferred_stylesheet_set_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_ready_state_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_referrer_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_scripts_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_scrolling_element_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_selected_stylesheet_set_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_style_sheets_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_title_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_url_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_visibility_state_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_webkit_current_full_screen_element_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_webkit_full_screen_keyboard_input_allowed_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_webkit_fullscreen_element_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_webkit_fullscreen_enabled_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_webkit_is_full_screen_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_xml_encoding_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_xml_standalone_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_xml_version_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<DOMDocument>> DOMDocumentExt for O[src]

Loading content...