summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/webaudio/offlineaudiocontext-constructor.html
blob: 8ed784debbeb1ac82c36df2344eeab184e03f63b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the OfflineAudioContext constructor");

// Make sure we don't crash when giving 0 as number of frames.
shouldThrow("new webkitOfflineAudioContext(1, 0, 44100)");
</script>
</body>
</html>