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