Hi, Last week I've implemented some DOM Level 3 features (http://www.w3.org/TR/DOM-Level-3-Core/).
NOTE: This implementation is experimental. DOM Level 3 is in working draft stage - it is still possible that changes in the specification occur. Added features are: EntityImpl *encoding of type DOMString An attribute specifying, as part of the text declaration, the encoding of this entity, when it is an external parsed entity. This is null otherwise. *version of type DOMString An attribute specifying, as part of the text declaration, the version number of this entity, when it is an external parsed entity. This is null otherwise. - getEncoding(), getVersion(), setEncoding(), setVersion() DocumentImpl: *encoding of type DOMString An attribute specifying, as part of the XML declaration, the encoding of this document. This is null when unspecified. *standalone of type boolean An attribute specifying, as part of the XML declaration, whether this document is standalone. *version of type DOMString An attribute specifying, as part of the XML declaration, the version number of this document. This is null when unspecified. - getEncoding(), getVersion(), setEncoding(), setVersion(), getStandalone(), setStandalone() Have fun :), Elena.
