# File temp/element.rb, line 362
                def each_element_with_text( text=nil, max=0, name=nil, &block ) # :yields: Element
                        each_with_something( proc {|child| 
                                if text.nil?
                                        child.has_text?
                                else
                                        child.text == text
                                end
                        }, max, name, &block )
                end