summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/gamepad/test_check_timestamp_iframe.html
blob: 44fef0fee61fdd06bbf6b45bdd014a44fbbd4083 (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
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE HTML>
<html>
<head>
  <title>Test Gamepad.timestamp</title>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script type="text/javascript" src="mock_gamepad.js"></script>
<script class="testbody" type="text/javascript">

let ok = window.parent.ok;
let is = window.parent.is;
let SimpleTest = window.parent.SimpleTest;
let SpecialPowers = window.parent.SpecialPowers;

window.addEventListener("gamepadbuttondown", buttonpresshandler);

var index;
var timea=0;
var firstPress = true;
var testOver = false;

runGamepadTest(checkTimestamp);

function checkTimestamp(){
  GamepadService.addGamepad("test gamepad 1",
                            GamepadService.standardMapping,
                            GamepadService.noHand,
                            4,
                            2,
                            0,
                            0,
                            0).then(function(i) {
                              index = i;
                              // Press a button to make the gamepad visible
                              // to the page.
                              GamepadService.newButtonEvent(index, 0, true, true);
                              GamepadService.newButtonEvent(index, 0, true, true);
                              ok(true, "test");
                            });
}

function cleanup(){
  SpecialPowers.executeSoon(function() {
    GamepadService.removeGamepad(index);
    SimpleTest.finish();
  });
}

function buttonpresshandler(e) {
  if (testOver) {
    return;
  }
  if (timea == 0){
    timea = e.gamepad.timestamp;
  } else {
    ok(timea <= e.gamepad.timestamp, "Timestamp less than last timestamp");
  }
  GamepadService.newButtonEvent(index, 0, false, false);
  if (!firstPress) {
    testOver = true;
    SpecialPowers.executeSoon(cleanup);
  } else {
    firstPress = false;
  }
}

</script>
</body>
</html>