summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_hittest_bug1715369.html
blob: d1128fa9467b3362cc55072b1c79022ee4879dbc (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
70
71
72
73
74
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=2100"/>
  <title>Check hittesting fission oop iframe with transform works bug 1715369</title>
  <script src="apz_test_native_event_utils.js"></script>
  <script src="apz_test_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
  <script>

async function makeActive(x, y, targetId) {
  let theTarget = document.getElementById(targetId);
  await promiseNativeMouseEventWithAPZAndWaitForEvent({
    type: "click",
    target: theTarget,
    offsetX: x,
    offsetY: y,
  });

  await promiseApzFlushedRepaints();

  ok(isLayerized(targetId), "target should be layerized at this point");
  let utils = SpecialPowers.getDOMWindowUtils(window);
  let targetScrollId = utils.getViewId(theTarget);
  ok(targetScrollId > 0, "target should have a scroll id");
}

async function test() {
  await makeActive(20, 20, "scrollable");

  let clickPromise = new Promise(resolve => {
    window.addEventListener("message", event => {
      if (event.data == "gotclick") {
        ok(true, "got click");
        resolve();
      }
    })
  });


  let thetarget = document.getElementById("theiframe");
  await synthesizeNativeMouseEventWithAPZ({ type: "click", target: thetarget, offsetX: 25, offsetY: 25 });
  info("sent click");

  await clickPromise;

  ok(true, "must have got click");

}

waitUntilApzStable()
.then(test)
.then(subtestDone, subtestFailed);

  </script>
<style>
</style>
</head>
<body>

<!--transform
asr change
in process iframe/stackingcontext
oopif-->
<div style="height: 100px; width: 100px; transform: scale(3); transform-origin: top left;">
  <div id="scrollable" style="overflow: scroll; height: 200px;">
    <div id="topspacer" style="height: 50px;"></div>
    <iframe id="theiframe" style="border: 1px;" frameborder="1" src="helper_hittest_bug1715369_iframe.html"></iframe>
    <div style="height: 200vh;"></div>
  </div>
</div>
</body>
</html>