-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
23 lines (16 loc) · 1.2 KB
/
README
File metadata and controls
23 lines (16 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Readme on DOM Level 2 Simple implementation
===========================================
Introduction
------------
This is a simplified version of the W3C DOM Level 2 core specification. The main objective of this implementation is to be able to use base functionality of Nodes and the tree like structure. It does not implement the full functionality and all classes defined in the DOM Specification, only what is minimally required for basic usage of DOM.
Supported functionality
-----------------------
The following interfaces have been implemented:
* Attr interface fully implemented
* NamedNodeMap+ interface fully implemented
* Document interface minimal implementation only to create Element and Attr nodes
* Element interface mostly functionally complete with missing getElementsByTagName, iD attribute methods as well getSchemaTypeInfo methods.
* Node interface partially implemented, see code for details
* NodeList interface fully implemented
* TypeInfo interface minimally implemented and not really functional
Additionally some DOM conversion utilities outside of the DOM Core specification is also available in the DOMUtilities class as well XPath utilities in the XPathGen class.