# File lib/celerity/elements/table_cell.rb, line 23
    def colspan
      assert_exists
      attribute_value = @object.getAttribute('colspan').to_i
      attribute_value > 0 ? attribute_value : 1
    end