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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1315862
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 1315862</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="content">
This is a test to check if pointer events are dispatched in the system group
</p>
<script type="text/javascript">
/** Test for Bug 1315862 **/
SimpleTest.waitForExplicitFinish();
function runTests() {
let allPointerEvents = ["pointerdown", "pointerup", "pointercancel",
"pointermove", "pointerover", "pointerout",
"pointerenter", "pointerleave", "gotpointercapture",
"lostpointercapture"
];
let content = document.getElementById('content');
let iframe = document.createElement('iframe');
let receivePointerEvents = false;
iframe.width = 50;
iframe.height = 50;
content.appendChild(iframe);
iframe.contentDocument.body.innerHTML =
"<div style='width: 100%; height: 100%; border: 1px solid black;'></div>";
let target = iframe.contentDocument.body.firstChild;
allPointerEvents.forEach((event, idx, arr) => {
SpecialPowers.wrap(target).addEventListener(event, () => {
ok(false, "Shouldn't dispatch " + event + " in the system group");
receivePointerEvents = true;
}, { mozSystemGroup: true });
});
target.addEventListener("pointerdown", (e) => {
target.setPointerCapture(e.pointerId);
});
target.addEventListener("pointerup", () => {
is(receivePointerEvents, false, "Shouldn't dispatch pointer events in the system group");
SimpleTest.finish();
});
let source = MouseEvent.MOZ_SOURCE_MOUSE;
synthesizeMouse(target, 5, 5, { type: "mousemove", inputSource: source },
iframe.contentWindow);
synthesizeMouse(target, 5, 5, { type: "mousedown", inputSource: source },
iframe.contentWindow);
synthesizeMouse(target, 5, 5, { type: "mousemove", inputSource: source },
iframe.contentWindow);
synthesizeMouse(target, 5, 5, { type: "mouseup", inputSource: source },
iframe.contentWindow);
}
SimpleTest.waitForFocus(runTests);
</script>
</body>
</html>
|