summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_bug1056032.html
blob: ba38267e19f597b0cb6bce25046e9324bccf7020 (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
<!DOCTYPE HTML>
<html>
<meta charset=utf-8>
<head>
  <title>Test that we can decode an mp3 (bug 1056032)</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">
var filename = "small-shot.mp3";

SimpleTest.waitForExplicitFinish();

addLoadEvent(function() {
  var xhr = new XMLHttpRequest();
  xhr.open("GET", filename);
  xhr.responseType = "arraybuffer";
  xhr.onload = function() {
    var context = new AudioContext();
    context.decodeAudioData(xhr.response, function(b) {
      ok(true, "We can decode an mp3 using decodeAudioData");
      SimpleTest.finish();
    }, function() {
      ok(false, "We should be able to decode an mp3 using decodeAudioData but couldn't");
      SimpleTest.finish();
    });
  };
  xhr.send(null);
});
</script>
</pre>
</body>
</html>