blob: e62d819934667c009d4feb515c3436ad62d56fac (
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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=968148
-->
<head>
<title>Test for Bug 968148</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript">
function testWithoutImplicitPointerCapture() {
var iframe = document.getElementById("testFrame");
iframe.src = "bug968148_inner.html";
}
function testWithImplicitPointerCapture() {
var iframe = document.getElementById("testFrame");
iframe.src = "bug968148_inner2.html";
}
function runTest() {
SimpleTest.waitForExplicitFinish();
window.addEventListener("message", (event) => {
if (event.data == "finishTest") {
SimpleTest.finish();
} else if (event.data == "run next") {
SpecialPowers.pushPrefEnv({
"set": [
["dom.w3c_pointer_events.implicit_capture", true]
]
}, testWithImplicitPointerCapture);
}
});
SpecialPowers.pushPrefEnv({
"set": [
["dom.w3c_pointer_events.implicit_capture", false]
]
}, testWithoutImplicitPointerCapture);
}
</script>
</head>
<body onload="runTest();">
<iframe id="testFrame" height="500" width="500"></iframe>
</body>
|