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