13The table contains the mapping of an Infoset information item to a Node
Attribute
Value
11Node.nodeName |
11same as Element.tagName |
11Node.nodeValue |
11null |
11Node.nodeType |
11Node.ELEMENT_NODE |
11Node.parentNode |
11The [parent] property |
11Node.childNodes |
11A NodeList containing the information items
in the [children] property
|
11Node.firstChild |
11The first node contained in Node.childNodes |
11Node.lastChild |
11The last node contained in Node.childNodes |
11Node.previousSibling |
11The information item preceding the current one on the
[children] property contained in the [parent] property |
11Node.nextSibling |
11The information item following the current one on the
[children] property contained in the [parent] property |
11Node.attributes |
11The information items contained in
the [attributes] and [namespace attributes] properties |
11Node.ownerDocument |
11The document information item |
11Node.namespaceURI |
11The [namespace name] property |
11Node.prefix |
11The [prefix] property |
11Node.localName |
11The [local name] property |
11Node.baseURI |
11The [base URI] property |
11Node.textContent |
11Concatenation of the Node.textContent
attribute value of every child node, excluding
COMMENT_NODE and
PROCESSING_INSTRUCTION_NODE nodes. This is
the empty string if the node has no children. |
11Element.tagName |
11If the [prefix] property has no value, this contains the
[local name] property. Otherwise, this contains the
concatenation of the [prefix] property, the colon ':'
character, and the [local name] property. |
11Element.schemaTypeInfo |
11
A TypeInfo object whose
TypeInfo.typeNamespace and
TypeInfo.typeName are inferred from the
schema in use if available.
|