|
def prefixes
ns = []
each_attribute do |attribute|
end
if @element.document and @element.document.doc_type
expn = @element.expanded_name
expn = @element.document.doc_type.name if expn.size == 0
@element.document.doc_type.attributes_of(expn).each {
|attribute|
}
end
ns
end
|