org.w3c.dom.html
Interface HTMLDOMImplementation
- All Superinterfaces:
- DOMImplementation
- public interface HTMLDOMImplementation
- extends DOMImplementation
The HTMLDOMImplementation interface extends the
DOMImplementation interface with a method for creating an
HTML document instance.
See also the Document Object Model (DOM) Level 2 HTML Specification.
- Since:
- DOM Level 2
createHTMLDocument
public HTMLDocument createHTMLDocument(String title)
- Creates an
HTMLDocument object with the minimal tree made
of the following elements: HTML, HEAD,
TITLE, and BODY.
- Returns:
- A new
HTMLDocument object.