mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-20 19:00:25 +00:00
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>
|