blob: 78ea64c11938587cd873c0ba4045f06562eaeb9d (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function maxTouchPoints() {
await new Promise(resolve => {
SpecialPowers.pushPrefEnv(
{
set: [["dom.maxtouchpoints.testing.value", 5]],
},
resolve
);
});
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
"data:text/html,Test page for navigator.maxTouchPoints"
);
await SpecialPowers.spawn(tab.linkedBrowser, [], function () {
is(content.navigator.maxTouchPoints, 5, "Should have touch points.");
});
BrowserTestUtils.removeTab(tab);
});
|