/[suikacvs]/messaging/manakai/lib/Message/DOM/Attr.pm
Suika

Diff of /messaging/manakai/lib/Message/DOM/Attr.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by wakaba, Wed Jun 13 12:05:35 2007 UTC revision 1.2 by wakaba, Fri Jun 15 14:32:49 2007 UTC
# Line 56  sub owner_element ($); Line 56  sub owner_element ($);
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    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24