summaryrefslogtreecommitdiffstats
path: root/dom/events/test/pointerevents/test_synthesized_touch.html
blob: 8a79303e74bf08b153251a835b102ed11f1bd367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test synthesized touch input</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css" />

<style>
  #container {
    width: 100px;
    height: 100px;
    background-color: green;
  }
</style>

<div id="container"></div>

<script>
function waitForEvent(aTarget, aEvent, aCheckFn) {
  return new Promise(aResolve => {
    aTarget.addEventListener(aEvent, function(e) {
      info(`${aEvent} received`);
      aCheckFn(e);
      aResolve();
    }, { once: true });
  });
}

add_task(async function test() {
  const tiltX = 10;
  const tiltY = -10;
  const twist = 5;
  const check = function(aEvent) {
    is(aEvent.tiltX, tiltX, "check tiltX");
    is(aEvent.tiltY, tiltY, "check tiltY");
    is(aEvent.twist, twist, "check twist");
  };

  const container = document.getElementById("container");
  const pointerDownPromise = waitForEvent(container, "pointerdown", check);
  const pointerUpPromise = waitForEvent(container, "pointerup", check);

  synthesizeTouchAtCenter(container, {tiltX, tiltY, twist});

  await Promise.all([pointerDownPromise, pointerUpPromise]);
});
</script>