summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_AudioParamDevtoolsAPI.html
blob: 81fdd357c9a90c95f949431817179c67d60d42a4 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test the devtool AudioParam API</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">

  function checkIdAndName(node, name) {
    is(SpecialPowers.getPrivilegedProps(node, "id"),
       SpecialPowers.getPrivilegedProps(node[name], "parentNodeId"),
       "The parent id should be correct");
    is(SpecialPowers.getPrivilegedProps(node[name], "name"), name,
       "The name of the AudioParam should be correct.");
  }

  var ac = new AudioContext(),
      gain = ac.createGain(),
      osc = ac.createOscillator(),
      del = ac.createDelay(),
      source = ac.createBufferSource(),
      stereoPanner = ac.createStereoPanner(),
      comp = ac.createDynamicsCompressor(),
      biquad = ac.createBiquadFilter();

  checkIdAndName(gain, "gain");
  checkIdAndName(osc, "frequency");
  checkIdAndName(osc, "detune");
  checkIdAndName(del, "delayTime");
  checkIdAndName(source, "playbackRate");
  checkIdAndName(source, "detune");
  checkIdAndName(stereoPanner, "pan");
  checkIdAndName(comp, "threshold");
  checkIdAndName(comp, "knee");
  checkIdAndName(comp, "ratio");
  checkIdAndName(comp, "attack");
  checkIdAndName(comp, "release");
  checkIdAndName(biquad, "frequency");
  checkIdAndName(biquad, "detune");
  checkIdAndName(biquad, "Q");
  checkIdAndName(biquad, "gain");

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