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