56 |
|
|
57 |
## The |Node| interface - attribute |
## The |Node| interface - attribute |
58 |
|
|
59 |
sub node_type { 2 } # ATTRIBUTE_NODE |
## Spec: |
60 |
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-F68D095> |
61 |
|
## Modified: <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-1841493061> |
62 |
|
|
63 |
|
## The name of the attribute [DOM1, DOM2]. |
64 |
|
## Same as |Attr.name| [DOM3]. |
65 |
|
|
66 |
|
*node_name = \&name; |
67 |
|
|
68 |
|
sub node_type () { 2 } # ATTRIBUTE_NODE |
69 |
|
|
70 |
|
## Spec: |
71 |
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-F68D080> |
72 |
|
## Modified: <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-1841493061> |
73 |
|
|
74 |
|
## The value of the attribute [DOM1, DOM2]. |
75 |
|
## Same as |Attr.value| [DOM3]. |
76 |
|
|
77 |
|
*node_value = \&value; |
78 |
|
|
79 |
## The |Attr| interface - attribute |
## The |Attr| interface - attribute |
80 |
|
|