Class Gdome.document

class document : TDocument.t -> object .. end
Inherits
method get_doctype : documentType option
method get_documentElement : element
method get_implementation : domImplementation
method createAttribute : name:domString -> attr
method createAttributeNS : namespaceURI:domString option ->
qualifiedName:domString -> attr
method createCDATASection : data:domString -> cdataSection
method createComment : data:domString -> comment
method createDocumentFragment : documentFragment
method createElement : tagName:domString -> element
method createElementNS : namespaceURI:domString option ->
qualifiedName:domString -> element
method createEntityReference : name:domString -> entityReference
method createProcessingInstruction : target:domString -> data:domString -> processingInstruction
method createTextNode : data:domString -> text
method getElementById : elementId:domString -> element option
method getElementsByTagName : tagname:domString -> nodeList
method getElementsByTagNameNS : namespaceURI:domString -> localName:domString -> nodeList
method importNode : importedNode:node -> deep:bool -> node
method as_Document : TDocument.t