summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/pointerlock/file_doubleLock.html
blob: 93e156a0b0e299aff4f66adc20467ce9e546da8a (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=633602
-->
<head>
  <title>Bug 633602 - file_doubleLockCallBack.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"/>
  <style type="text/css">
      #test-element { background-color: #94E01B; width:100px; height:100px; }
  </style>
</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="text/javascript">
      /*
       * Test for Bug 633602
       * If element requests pointerlock on itself while in pointerlock state
       * pointerlockchange event should be dispatched
       */

      SimpleTest.waitForExplicitFinish();

      var div = document.getElementById("div")
        , numberOfLocks = 0;

      function runTests () {
        is(numberOfLocks, 2, "Requesting pointer lock on a locked element " +
          "should dispatch pointerlockchange event");
      }

      document.addEventListener("pointerlockchange", function (e) {
        if (document.pointerLockElement === div) {
          if (numberOfLocks === 2) {
            addFullscreenChangeContinuation("exit", function() {
              runTests();
              SimpleTest.finish();
            });
            document.exitFullscreen();
          }
          else {
            numberOfLocks++;
            div.requestPointerLock();
          }
        }
      });

      function start() {
        console.log('started');
        addFullscreenChangeContinuation("enter", function() {
          div.requestPointerLock();
        });
        div.requestFullscreen();
      }
    </script>
  </pre>
</body>
</html>