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