# File rexml/element.rb, line 1546
    def prefixes
      ns = []
      each_attribute do |attribute|
	ns << attribute.name if attribute.prefix == "xmlns"
      end
      ns
    end