Trait webkit2gtk_webextension::DOMDOMImplementationExt[][src]

pub trait DOMDOMImplementationExt {
    fn create_css_style_sheet(
        &self,
        title: &str,
        media: &str
    ) -> Result<DOMCSSStyleSheet, Error>;
fn create_document<'a, 'b, P: Into<Option<&'a str>>, Q: Into<Option<&'b DOMDocumentType>>>(
        &self,
        namespaceURI: P,
        qualifiedName: &str,
        doctype: Q
    ) -> Result<DOMDocument, Error>;
fn create_document_type(
        &self,
        qualifiedName: &str,
        publicId: &str,
        systemId: &str
    ) -> Result<DOMDocumentType, Error>;
fn create_html_document(&self, title: &str) -> Option<DOMHTMLDocument>;
fn has_feature(&self, feature: &str, version: &str) -> bool; }

Required Methods

Implementors