|  |  
 |   |   
 NAMEHTML::DOM::Text - A Perl class for representing text nodes in an HTML DOM tree VERSIONVersion 0.058 SYNOPSIS  use HTML::DOM;
  $doc = HTML::DOM->new;
  $comment = $doc->createComment("yayayayayayaaya");
  $comment->data;              # 'yayayayayayaaya'
  $comment->length;            #  27
  $comment->substringData(13); # 'ya' 
  # etc.
DESCRIPTIONThis class implements the Comment interface for HTML::DOM. It inherits from HTML::DOM::CharacterData, which inherits from HTML::DOM::Node. METHODSHTML::DOM::Comment's Own Methods
 Inherited MethodsThese are inherited from HTML::DOM::CharacterData: 
 These are inherited from HTML::DOM::Node: SEE ALSOHTML::DOM HTML::DOM::CharacterData HTML::DOM::Node 
 
 |