Known indirect subclasses
Attr, CDATASection, CharacterData, Comment, Document, DocumentFragment, DocumentType, Element, Entity, EntityReference, Notation, ProcessingInstruction, Text
| Attr |
The Attr interface represents an attribute in an
Element object.
|
| CDATASection |
CDATA sections are used to escape blocks of text containing characters that
would otherwise be regarded as markup.
|
| CharacterData |
The CharacterData interface extends Node with a set of
attributes and methods for accessing character data in the DOM.
|
| Comment |
This interface inherits from CharacterData and represents the
content of a comment, i.e., all the characters between the starting '
<!--' and ending '-->'.
|
| Document |
The Document interface represents the entire HTML or XML
document.
|
| DocumentFragment |
DocumentFragment is a "lightweight" or "minimal"
Document object.
|
| DocumentType |
Each Document has a doctype attribute whose value
is either null or a DocumentType object.
|
| Element |
The Element interface represents an element in an HTML or XML
document.
|
| Entity |
This interface represents a known entity, either parsed or unparsed, in an
XML document.
|
| EntityReference |
EntityReference nodes may b | |