# File lib/http/cookie.rb, line 569
  def acceptable?
    case
    when @domain.nil?
      raise "domain is missing"
    when @path.nil?
      raise "path is missing"
    when @origin.nil?
      true
    else
      acceptable_from_uri?(@origin)
    end
  end