# File lib/html5/treebuilders/hpricot.rb, line 141
        def printTree(indent=0)
          childNodes.inject('#document') { |tree, child| tree + child.printTree(indent + 2) }
        end