| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src='../../../resources/testharness.js'></script> |
| 3 <script src='../../../resources/testharnessreport.js'></script> |
| 4 <style type="text/css"> |
| 5 #box { |
| 6 width: 600px; |
| 7 height: 600px; |
| 8 touch-action: none; |
| 9 } |
| 10 </style> |
| 11 <div id="box" ></div> |
| 12 |
| 13 <script type="text/javascript"> |
| 14 |
| 15 var touchMoveCount = 0; |
| 16 var pointerMoveCount = 0; |
| 17 var box = document.getElementById("box"); |
| 18 var targetRect = box.getBoundingClientRect(); |
| 19 var offset = 50; |
| 20 var x = targetRect.left + offset; |
| 21 var y = targetRect.top + offset; |
| 22 |
| 23 function validTouchMoveResult(event) { |
| 24 touchMoveCount++; |
| 25 testTouchMove.step(function () { |
| 26 assert_equals(event.target.id, "box"); |
| 27 }); |
| 28 } |
| 29 |
| 30 function validPointerMoveResult(event) { |
| 31 pointerMoveCount++; |
| 32 testTouchMove.step(function () { |
| 33 assert_equals(event.target.id, "box"); |
| 34 assert_equals(event.pointerType, "touch"); |
| 35 }); |
| 36 } |
| 37 |
| 38 function callbackValidMoveCount() { |
| 39 testTouchMove.step(function () { |
| 40 assert_equals(touchMoveCount, 2); |
| 41 assert_equals(pointerMoveCount, 3); |
| 42 }); |
| 43 testTouchMove.done(); |
| 44 } |
| 45 |
| 46 function testMultiPointerMoveSuppressionInSlopRegion() { |
| 47 if (window.chrome && chrome.gpuBenchmarking) { |
| 48 var pointerActions = |
| 49 [{source: "touch", |
| 50 actions: [ |
| 51 { name: "pointerDown", x: x, y: y }, |
| 52 { name: "pointerMove", x: x, y: y + 10 }, |
| 53 { name: "pause" }, |
| 54 { name: "pause" }, |
| 55 { name: "pause" }, |
| 56 { name: "pointerMove", x: x, y: y + 6 }, |
| 57 { name: "pointerUp" }]}, |
| 58 {source: "touch", |
| 59 actions: [ |
| 60 { name: "pause" }, |
| 61 { name: "pause" }, |
| 62 { name: "pointerDown", x: x, y: y }, |
| 63 { name: "pointerMove", x: x, y: y + 10 }, |
| 64 { name: "pointerUp"}]}]; |
| 65 chrome.gpuBenchmarking.pointerActionSequence(pointerActions, callbackVal
idMoveCount); |
| 66 } |
| 67 } |
| 68 |
| 69 var testTouchMove = async_test('Tests that TouchMoves are not suppressed if a se
condary pointer is present during any movement.'); |
| 70 box.addEventListener('touchmove', validTouchMoveResult); |
| 71 box.addEventListener('pointermove', validPointerMoveResult); |
| 72 testMultiPointerMoveSuppressionInSlopRegion(); |
| 73 |
| 74 </script> |
| OLD | NEW |