# File lib/cucumber/formatter/html.rb, line 282
      def table_cell_value(value, status)
        return if @hide_this_step
        
        cell_type = @outline_row == 0 ? :th : :td
        attributes = {:id => "#{@row_id}_#{@col_index}", :class => 'val'}
        attributes[:class] += " #{status}" if status
        build_cell(cell_type, value, attributes)
        @col_index += 1
      end