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().
5 lines
109 B
HTML
5 lines
109 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
const context = new AudioContext();
|
|
context.getOutputTimestamp();
|
|
</script>
|