Description
The API implementation follows the ECMAScript/DOM2 Language Binding
defined in DOM Level2, Appendix E.
However, there are few exceptions from the specifications: * The DOM model is read only * DOM functions handling namespaces (with NS in their name) are
not supported (throw NOT_SUPPORTED exception). * XSLTContext.stringValue method is not supported. * Document.getElementsByTagName{NS} methods aren't supported. * Element.getElementsByTagName{NS} methods aren't supported. * DTD definition nodes are not supported.
As the model is read-only and because of distinctions in the DOM
and the XPath models, some objects can't be ever instantiated.
Those objects (DocumentFragment, Text, Comment, CDATASection,
DocumentType, Notation, Entity, EntityReference, ProcessingInstruction)
are not supported.
See .Objects for the list of implemented objects.
Type .Conversions and XSLTContext object binding are
implemented according to XSLT 1.1, Appendix C3.
|