mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
281489a00e
--HG-- extra : rebase_source : ffffdc4549da1b25ea263b623c05ae1afb3d46a0
17 lines
353 B
HTML
17 lines
353 B
HTML
<!-- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>frame</title>
|
|
<script type="text/javascript">
|
|
var gamepad;
|
|
window.addEventListener("gamepadconnected", function(e) {
|
|
gamepad = e.gamepad;
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|