# File lib/Borges/HTML/HtmlBuilder.rb, line 304
  def table_row_span(span, &block)
    table_row do
      @attributes[:colspan] = span
      table_data(&block)
    end
  end