summaryrefslogtreecommitdiffstats
path: root/dom/events/test/browser_bug1539497.js
blob: e52ec100e3950d75e910fab9bf56d2149a2fc09a (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
/* 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.w3c_pointer_events.enabled", true],
          ["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);
});