Re: [pointerevents-tests] Submission/microsoft/pointer events (#324)

This test should be aborted altogether if the pointer type is not touch. Replace Lines 41-44 with
if (e.pointerType != "touch") {
  test(function() {
    assert_unreached("Test should be run using a touch as input.");
  });
  done();
}

View on GitHub: https://github.com/w3c/web-platform-tests/pull/324#discussion_r11779477

Received on Friday, 18 April 2014 17:29:20 UTC