blob: 530e205e4e3efd1fc573b42bf04650fbff5fc572 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../resources/js-test.js"></script>
<script>
description("Checks that starting rendering on a OfflineAudioContext that has no nodes does not crash.");
jsTestIsAsync = true;
let context = new OfflineAudioContext(1, 128, 44100);
context.oncomplete = () => {
testPassed("Finished rendering");
finishJSTest();
};
context.startRendering();
</script>
</body>
</html>