class HTML::Text

def initialize(parent, line, pos, content)

content.
Creates a new text node as a child of the given parent, with the given
def initialize(parent, line, pos, content)
  super(parent, line, pos)
  @content = content
end