mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e6ca808683
--HG-- rename : content/media/webaudio/test/test_audioBufferSourceNodeLoop.html => content/media/webaudio/test/test_audioBufferSourceNodeEnded.html extra : rebase_source : 787d1d19b6463906ff9db8cbfb5e61d76a2ab667
32 lines
694 B
HTML
32 lines
694 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test AudioBufferSourceNode</title>
|
|
<script type="text/javascript" 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">
|
|
|
|
var gTest = {
|
|
length: 2048,
|
|
numberOfChannels: 1,
|
|
createGraph: function(context) {
|
|
var source = context.createBufferSource();
|
|
|
|
source.start(0);
|
|
source.buffer = null;
|
|
is(source.buffer, null, "Try playing back a null buffer");
|
|
return source;
|
|
},
|
|
};
|
|
|
|
runTest();
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|