# File lib/rexml/attribute.rb, line 130
                def value
                        return @unnormalized if @unnormalized
                        doctype = nil
                        if @element
                                doc = @element.document
                                doctype = doc.doctype if doc
                        end
                        @unnormalized = Text::unnormalize( @normalized, doctype )
                        @normalized = nil
      @unnormalized
                end