# File rexml/element.rb, line 221
  def each_element_with_text( text, max=0, name=nil, &block )
			each_with_something( proc {|child| child.text == text}, 
			max, name, &block )
		end