summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/pointerlock/file_infiniteMovement.html
blob: 995d99843b16ffc51bf0bad890eef0f4c9ebd356 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=633602
-->
  <head>
    <title>Bug 633602 - file_movementXY.html</title>
    <script src="/tests/SimpleTest/SimpleTest.js">
    </script>
    <script src="/tests/SimpleTest/EventUtils.js">
    </script>
    <script type="application/javascript" src="pointerlock_utils.js"></script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  </head>
  <body>
    <a target="_blank"
      href="https://bugzilla.mozilla.org/show_bug.cgi?id=633602">
      Mozilla Bug 633602
    </a>
    <div id="div"></div>
    <pre id="test">
      <script type="application/javascript">
        /*
         * Test for Bug 633602
         * This test checks if movementX and movementY
         * are present in a mouse event object.
         * It also checks the values for movementXY.
         * They should be equal to the current screenXY minus
         * the last screenXY
         * This test will also test that the incremental movement is
         * not constrained to the width of the screen.
         */

        SimpleTest.waitForExplicitFinish();

        var div = document.getElementById("div")
          , divCenterWidth = 0
          , divCenterHeight = 0
          , totalMovementX = 0
          , totalMovementY = 0
          , mouseMoveIntervalID;

        function runTests () {
          ok(totalMovementX > div.getBoundingClientRect().width,
               "Should have moved more than one screen's worth in width." +
               "TotalX: " + totalMovementX + " Screensize X: " + div.getBoundingClientRect().width);
          ok(totalMovementY > div.getBoundingClientRect().height,
             "Should have moved more than one screen's worth in height." +
             "TotalY: " + totalMovementY + " Screensize Y: " + div.getBoundingClientRect().height);
        }

        var firstMoveListener = function (e) {
          info("Got first mousemove");
          clearInterval(mouseMoveIntervalID);
          div.removeEventListener("mousemove", firstMoveListener);
          div.addEventListener("mousemove", secondMoveListener);

          // Bug 1357082
          // Retrigger synthesizeMouse until it actually happens.
          mouseMoveIntervalID = setInterval(() => {
            synthesizeMouse(div,(divCenterWidth/2) * 3,
              (divCenterHeight/2) * 3, {
              type: "mousemove"
            }, window);
          }, 100);
        }

        var secondMoveListener = function (e) {
          info("Got second mousemove");
          clearInterval(mouseMoveIntervalID);
          totalMovementX = divCenterWidth + ((divCenterWidth / 2) * 3);
          totalMovementY = divCenterHeight + ((divCenterHeight / 2) * 3);

          div.removeEventListener("mousemove", secondMoveListener);
          addFullscreenChangeContinuation("exit", function() {
            info("Got fullscreenchange for exiting");
            runTests();
            SimpleTest.finish();
          });
          document.exitFullscreen();
        }

        document.addEventListener("pointerlockchange", function (e) {
          if (document.pointerLockElement === div) {
            info("Got pointerlockchange for entering");
            div.addEventListener("mousemove", firstMoveListener);

            divCenterWidth = Math.round(div.getBoundingClientRect().width / 2);
            divCenterHeight = Math.round(div.getBoundingClientRect().height / 2);

            // Bug 1357082
            // Retrigger synthesizeMouse until it actually happens.
            mouseMoveIntervalID = setInterval(() => {
              synthesizeMouse(div, divCenterWidth, divCenterHeight, {
                type: "mousemove"
              }, window);
            }, 100);
          } else {
            info("Got pointerlockchange for exiting");
          }
        });

        function start() {
          info("Requesting fullscreen on parent");
          addFullscreenChangeContinuation("enter", function() {
            info("Got fullscreenchange for entering");
            div.requestPointerLock();
          });
          div.requestFullscreen();
        }
      </script>
    </pre>
  </body>
</html>