summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/gamepad/test_gamepad_connect_events_iframe.html
blob: 278e6796c0dd739b491dd3c2312ec1a55e658925 (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
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->
<!-- bug 893785 - Test that sending a gamepadconnected event to a new window
     doesn't result in a gamepadconnected event being sent to existing
     windows that have already received it. -->
<!DOCTYPE HTML>
<html>
<head>
  <title>Test hidden frames</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;

var gamepad_index;

async function pressButton() {
  await GamepadService.newButtonEvent(gamepad_index, 0, true, true);
  await GamepadService.newButtonEvent(gamepad_index, 0, false, false);
}

 // Add a gamepad
async function startTests() {
  window.addEventListener("gamepadbuttondown", function() {
    // Wait to ensure that all frames received the button press as well.
    SpecialPowers.executeSoon(tests[testNum++]);
  });

  gamepad_index = await GamepadService.addGamepad("test gamepad", // id
                            GamepadService.standardMapping,
                            GamepadService.noHand,
                            4, // buttons
                            2,
                            0,
                            0,
                            0)

  await gamepad_connected();
}

var f1, f2;
async function gamepad_connected() {
  f1 = document.getElementById('f1');
  await pressButton();
}

var testNum = 0;
var tests = [
  test1,
  test2,
];

function test1() {
  is(f1.contentWindow.connectedEvents, 1, "right number of connection events in frame 1");

  // Now add another frame.
  f2 = document.createElement("iframe");
  f2.addEventListener("load", async () => {
    // When the frame is loaded, press a button again.
    await pressButton();
  });
  f2.src = "gamepad_frame.html";
  document.body.appendChild(f2);
}

async function test2() {
  is(f1.contentWindow.connectedEvents, 1, "right number of connection events in frame 1");
  is(f2.contentWindow.connectedEvents, 1, "right number of connection events in frame 2");
  is(f1.contentWindow.idlConnected, 1, "right number of IDL connection events in frame 1");
  is(f2.contentWindow.idlConnected, 1, "right number of IDL connection events in frame 2");
  await GamepadService.removeGamepad(gamepad_index);
  SimpleTest.finish();
}

</script>
<iframe id="f1" src="gamepad_frame.html" onload="runGamepadTest(startTests)"></iframe>
</body>
</html>