# File lib/selenium/webdriver/support/color.rb, line 82
        def ==(other)
          return true if equal?(other)
          return false unless other.kind_of?(self.class)

          [red, green, blue, alpha] == [other.red, other.green, other.blue, other.alpha]
        end