12 lines
361 B
HTML
12 lines
361 B
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<script src="../include.js"></script>
|
|||
|
|
<script>
|
|||
|
|
|
|||
|
|
// Once the ctor‑offlineaudiocontext WPT test is updated to check
|
|||
|
|
// renderQuantumSize and renderSizeHint, this test is not needed.
|
|||
|
|
test(() => {
|
|||
|
|
const audioContext = new OfflineAudioContext(1, 1, 44100)
|
|||
|
|
println(`${audioContext.renderQuantumSize}`);
|
|||
|
|
});
|
|||
|
|
</script>
|