createHTMLDocument( )

Creates an HTML document. This is a DOM Level 2 method.

Interface

ADOMDOMImplementation(W3C DOM: DOMImplementation)

IDL definition
HTMLDocument createHTMLDocument(DOMString title);
JavaScript synopsis
domimplobj.CreateHTMLDocument(title)
C synopsis
ADOMHTMLDocument* ADOMcreateHTMLDocument(
  ADOMHTMLDomImplementation* domimplobj,
  ADOMString title
);
Parameters
  • domimplobj   The ADOMHTMLDomImplementation object.

  • title   [in] The document title.

Returns

The document created.

See also

createDocument( )