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