# File lib/html/element.rb, line 99
    def each(&block)
      block.call(self)
      children.each { |ch| ch.each(&block) }
    end