57 |
|
|
58 |
## The |Node| interface - attribute |
## The |Node| interface - attribute |
59 |
|
|
60 |
sub node_type { 7 } # PROCESSING_INSTRUCTION_NODE |
## Spec: |
61 |
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-F68D095> |
62 |
|
## Modified: <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-1841493061> |
63 |
|
|
64 |
|
## The target of the processing instruction [DOM1, DOM2]. |
65 |
|
## Same as |ProcessingInstruction.target| [DOM3]. |
66 |
|
|
67 |
|
*node_name = \⌖ |
68 |
|
|
69 |
|
## Spec: |
70 |
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-111237558> |
71 |
|
|
72 |
|
sub node_type ($) { 7 } # PROCESSING_INSTRUCTION_NODE |
73 |
|
|
74 |
|
## Spec: |
75 |
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-F68D080> |
76 |
|
## Modified: <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-1841493061> |
77 |
|
|
78 |
|
## The entire content exclude the target [DOM1, DOM2]. |
79 |
|
## Same as |ProcessingInstruction.data| [DOM3]. |
80 |
|
|
81 |
|
*node_value = \&data; |
82 |
|
|
83 |
package Message::IF::ProcessingInstruction; |
package Message::IF::ProcessingInstruction; |
84 |
|
|