summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug1539497.html
blob: 4f49f1a044bf1ca123c7b90445fdff855f557382 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>bug 1539497</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
  <script>
    SimpleTest.waitForExplicitFinish();
    function runTest() {
      var win = window.open("about:blank");
      win.onload = function() {
        is(win.navigator.maxTouchPoints, 5, "Should have max touch points");
        win.close();
        SimpleTest.finish();
      }
    }
    function init() {
      SpecialPowers.pushPrefEnv(
        {"set": [["dom.maxtouchpoints.testing.value", 5]]}, runTest);
    }
  </script>
</head>
<body onload="init()">
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
</body>
</html>