summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/testdriver/actions/elementTiming.html
blob: 33731e92999809204821e25e96ede246fd5f7e0e (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<meta charset="utf-8">
<title>TestDriver actions: element timing</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>

<style>
div#test1, div#test2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: blue;
}

div#test2 {
  display: none;
  left: -100px;
  background-color: green;
}
</style>

<div id="test1">
</div>

<div id="test2">
</div>

<script>
let events = [];

promise_test(async t => {
  let test1 = document.getElementById("test1");
  let test2 = document.getElementById("test2");
  test1.addEventListener("click",
    () => {
      test2.style.display = "block";
      test2.style.top = "100px";
      test2.style.left = "0"
    });
  test2.addEventListener("click",
    e => {
      events.push(e.clientX);
      events.push(e.clientY);
    });

  const waitCondition = new Promise((resolve, reject)=>{setTimeout(resolve, 5000);});
  const test1ClickWatcher = new EventWatcher(t, test1, ["click"], ()=>waitCondition);
  const test2ClickWatcher = new EventWatcher(t, test2, ["click"], ()=>waitCondition);
  let waitForClicks = Promise.all([test1ClickWatcher.wait_for(["click"]), test2ClickWatcher.wait_for(["click"])]);

  await new test_driver.Actions()
    .pointerMove(0, 0, {origin: test1})
    .pointerDown()
    .pointerUp()
    .send();
  await new test_driver.Actions()
      .pointerMove(0, 0, {origin: test2})
      .pointerDown()
      .pointerUp()
      .send();
  await waitForClicks;
  assert_array_equals(events, [50, 150])
});
</script>