# File lib/mechanize/form/option.rb, line 14
      def initialize(node, select_list)
        @text     = node.inner_text
        @value    = Util.html_unescape(node['value'] || node.inner_text)
        @selected = node.has_attribute? 'selected'
        @select_list = select_list # The select list this option belongs to
      end