summaryrefslogtreecommitdiffstats
path: root/dom/html/test/file_mozaudiochannel.html
blob: 588ae338ba9b23965172c5953f1bc6495ddaf3e7 (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
84
85
86
87
88
89
90
91
<!DOCTYPE HTML>
<html>
<body>
<div id="content" style="display: none">
  <audio id="audio1" />
  <audio id="audio2" mozaudiochannel="foo" />
</div>

<script type="application/javascript">

function is(a, b, msg) {
  parent.postMessage({ status: a === b, msg: msg }, '*');
}

function ok(a, msg) {
  parent.postMessage({ status: !!a, msg: msg }, '*');
}

function finish() {
  parent.postMessage({ finish: true }, '*');
}

function test_basic() {
  var audio1 = document.getElementById("audio1");
  ok(audio1, "Audio Element exists");
  is(audio1.mozAudioChannelType, "normal", "Default audio1 channel == 'normal'");
  try {
  audio1.mozAudioChannelType = "foo";
  } catch(e) {}
  is(audio1.mozAudioChannelType, "normal", "Default audio1 channel == 'normal'");

  var audio2 = document.getElementById("audio2");
  ok(audio2, "Audio Element exists");
  is(audio2.mozAudioChannelType, "normal", "Default audio2 channel == 'normal'");
  try {
  audio2.mozAudioChannelType = "foo";
  } catch(e) {}
  is(audio2.mozAudioChannelType, "normal", "Default audio2 channel == 'normal'");

  runTest();
}

function test_preferences(aChannel) {
  SpecialPowers.pushPrefEnv({"set": [["media.defaultAudioChannel", aChannel ]]},
    function() {
      var audio = document.createElement('audio');
      ok(audio, "Audio Element created");
      is(audio.mozAudioChannelType, aChannel, "Default audio channel == '" + aChannel + "'");
      runTest();
    }
  );
}

function test_wrong_preferences() {
  SpecialPowers.pushPrefEnv({"set": [["media.defaultAudioChannel", 'foobar' ]]},
    function() {
      var audio = document.createElement('audio');
      ok(audio, "Audio Element created");
      is(audio.mozAudioChannelType, 'normal', "Default audio channel == 'normal'");
      runTest();
    }
  );
}
var tests = [
  test_basic,

  function() { test_preferences("content"); },
  function() { test_preferences("notification"); },
  function() { test_preferences("alarm"); },
  function() { test_preferences("telephony"); },
  function() { test_preferences("ringer"); },
  function() { test_preferences("publicnotification"); },

  test_wrong_preferences,
];

function runTest() {
  if (!tests.length) {
    finish();
    return;
  }

  var test = tests.shift();
  test();
}

runTest();

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