summaryrefslogtreecommitdiffstats
path: root/contrib/dom/idl/DOMImplementation.idl
blob: a91db5df6aa968648402f3a27cb505523fc3b4c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
interface DOMImplementation {
  boolean            hasFeature(in DOMString feature, 
                                in DOMString version);
  // Introduced in DOM Level 2:
  DocumentType       createDocumentType(in DOMString qualifiedName, 
                                        in DOMString publicId, 
                                        in DOMString systemId)
                                      raises(DOMException);
  // Introduced in DOM Level 2:
  Document           createDocument(in DOMString namespaceURI, 
                                    in DOMString qualifiedName, 
                                    in DocumentType doctype)
                                      raises(DOMException);
};