class Selenium::WebDriver::Interactions::PointerCancel

def assert_source(source)

def assert_source(source)
  raise TypeError, "#{source.type} is not a valid input type" unless source.is_a? PointerInput
end

def encode

def encode
  {type: type}
end

def initialize(source)

def initialize(source)
  super
  @type = :pointerCancel
end