# File lib/cucumber/formatter/html.rb, line 264
      def after_table_row(table_row)
        stop_buffering :table_row
        return if @hide_this_step
        builder.tr(:id => @row_id) do
          builder << buffer(:table_row)
        end
        if table_row.exception
          builder.tr do
            builder.td(:colspan => @col_index.to_s, :class => 'failed') do
              builder.pre do |pre|
                pre << format_exception(table_row.exception)
              end
            end
          end
        end
        @outline_row += 1 if @outline_row
      end