# File lib/mechanize/form/option.rb, line 16 def initialize(node, select_list) @text = node.inner_text @value = Mechanize::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