# File temp/element.rb, line 1190
                def delete_all( name )
                        rv = []
                        each_attribute { |attribute| 
                                rv << attribute if attribute.expanded_name == name
                        }
                        rv.each{ |attr| attr.remove }
                        return rv
                end