# File lib/html5/treebuilders/simpletree.rb, line 105
        def printTree indent=0
          tree = to_s
          for child in childNodes
            tree += child.printTree(indent + 2)
          end
          tree
        end