DOMImplementation

Module:
core
Declared In:

Overview

Use the links in the table of contents to the left to access the documentation.



Functions

createCSSStyleSheet
createDocument
createDocumentType
createHTMLDocument
hasFeature

createCSSStyleSheet


CSSStyleSheet createCSSStyleSheet(
    in DOMString title, 
    in DOMString media) raises(DOMException); 


createDocument


Document createDocument(
    in DOMString namespaceURI, 
    in DOMString qualifiedName, 
    in DocumentType doctype) raises(DOMException); 


createDocumentType


DocumentType createDocumentType(
    in DOMString qualifiedName, 
    in DOMString publicId, 
    in DOMString systemId) raises(DOMException); 


createHTMLDocument


HTMLDocument createHTMLDocument(
    in DOMString title); 


hasFeature


boolean hasFeature(
    in DOMString feature, 
    in DOMString version); 

 

Last Updated: 2009-05-29