ladybird/Tests/LibWeb/Crash/WebAudio/AudioContext-getOutputTimestamp.html
Andreas Kling c997de97c3 LibWeb: Populate AudioTimestamp dictionaries
Return the required AudioTimestamp members from getOutputTimestamp even
while the WebAudio rendering graph does not yet produce output timing.
This keeps the generated bindings from unwrapping missing required
fields.

Add a crash test that exercises AudioContext.getOutputTimestamp().
2026-05-23 11:36:45 +02:00

5 lines
109 B
HTML

<!DOCTYPE html>
<script>
const context = new AudioContext();
context.getOutputTimestamp();
</script>