pub trait DOMDOMImplementationExt: 'static {
fn create_css_style_sheet(
&self,
title: &str,
media: &str
) -> Result<DOMCSSStyleSheet, Error>;
fn create_document(
&self,
namespaceURI: Option<&str>,
qualifiedName: &str,
doctype: Option<&impl IsA<DOMDocumentType>>
) -> 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;
}
Expand description
Required Methods
sourcefn create_css_style_sheet(
&self,
title: &str,
media: &str
) -> Result<DOMCSSStyleSheet, Error>
fn create_css_style_sheet(
&self,
title: &str,
media: &str
) -> Result<DOMCSSStyleSheet, Error>
sourcefn create_document(
&self,
namespaceURI: Option<&str>,
qualifiedName: &str,
doctype: Option<&impl IsA<DOMDocumentType>>
) -> Result<DOMDocument, Error>
fn create_document(
&self,
namespaceURI: Option<&str>,
qualifiedName: &str,
doctype: Option<&impl IsA<DOMDocumentType>>
) -> Result<DOMDocument, Error>
Deprecated since 2.22
Use JavaScriptCore API instead
namespaceURI
A gchar
qualifiedName
A gchar
doctype
Returns
sourcefn create_document_type(
&self,
qualifiedName: &str,
publicId: &str,
systemId: &str
) -> Result<DOMDocumentType, Error>
fn create_document_type(
&self,
qualifiedName: &str,
publicId: &str,
systemId: &str
) -> Result<DOMDocumentType, Error>
Deprecated since 2.22
Use JavaScriptCore API instead
qualifiedName
A gchar
publicId
A gchar
systemId
A gchar
Returns
sourcefn create_html_document(&self, title: &str) -> Option<DOMHTMLDocument>
fn create_html_document(&self, title: &str) -> Option<DOMHTMLDocument>
sourcefn has_feature(&self, feature: &str, version: &str) -> bool
fn has_feature(&self, feature: &str, version: &str) -> bool
Deprecated since 2.22
Use JavaScriptCore API instead
feature
A gchar
version
A gchar
Returns
A gboolean