# File lib/action_view/helpers/form_tag_helper.rb, line 424
      def field_set_tag(legend = nil, options = nil, &block)
        content = capture(&block)
        concat(tag(:fieldset, options, true))
        concat(content_tag(:legend, legend)) unless legend.blank?
        concat(content)
        concat("</fieldset>")
      end