summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_audioDestinationNode.html
blob: e7a8b091bab8f76ac682bd5d367c5d59182bc090 (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 AudioDestinationNode as EventTarget</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="webaudio.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();

var ac = new AudioContext()
ac.destination.addEventListener("foo", function() {
  ok(true, "Event received!");
  SimpleTest.finish();
});
ac.destination.dispatchEvent(new CustomEvent("foo"));

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