summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_AudioListener.html
blob: e3d605cbcc13fb0789894e64a61355e3cdc63cf7 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test AudioContext.listener and the AudioListener interface</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
  var context = new AudioContext();
  ok("listener" in context, "AudioContext.listener should exist");
  // The values set by the following cannot be read from script, but the
  // implementation is simple enough, so we just make sure that nothing throws.
  context.listener.setPosition(1.0, 1.0, 1.0);
  context.listener.setOrientation(1.0, 1.0, 1.0, 1.0, 1.0, 1.0);
  SimpleTest.finish();
});

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