13The table contains the mapping of an Infoset information item to a Node
Attribute/Method
Value
11Node.nodeName |
11same as Attr.name |
11Node.nodeValue |
11same as Attr.value |
11Node.nodeType |
11Node.ATTRIBUTE_NODE |
11Node.parentNode |
11null |
11Node.childNodes |
11A NodeList containing one Text
node whose text content is the same as
Attr.value.
|
11Node.firstChild |
11The Text node contained in Node.childNodes |
11Node.lastChild |
11The Text node contained in Node.childNodes |
11Node.previousSibling |
11null |
11Node.nextSibling |
11null |
11Node.attributes |
11null |
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 |
11null |
11Node.textContent |
11the value of Node.textContent of the
Text child.
same as Node.nodeValue (since this
attribute node only contains one Text node) |
11Attr.name |
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. |
11Attr.specified |
11The [specified] property |
11Attr.value |
11The [normalized value] property |
11Attr.ownerElement |
11The [owner element] property |
11Attr.schemaTypeInfo |
11
A TypeInfo object whose
TypeInfo.typeNamespace is
"http://www.w3.org/TR/REC-xml" and
TypeInfo.typeName is the [attribute
type] property
|
11Attr.isId |
11
if the [attribute type] property is ID, this method return
true
|