# File lib/nokogiri/xml/node.rb, line 591
      def traverse &block
        children.each{|j| j.traverse(&block) }
        block.call(self)
      end