blob: 3f6b4175f6b598daec61b49737c0e54a07c1976f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="resources/audio-testing.js"></script>
<script src="../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("Tests that ConvolverNode buffer rate must match context rate.");
var context = new webkitOfflineAudioContext(1, 256, 44100);
var convolver = context.createConvolver();
shouldThrow("convolver.buffer = context.createBuffer(1, 256, 22050)", "'NotSupportedError (DOM Exception 9): The operation is not supported.'");
shouldNotThrow("convolver.buffer = context.createBuffer(1, 256, 44100)");
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>