mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
17 lines
454 B
HTML
17 lines
454 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const audioContext = new OfflineAudioContext(1, 5000, 44100);
|
|
|
|
const compressor = audioContext.createDynamicsCompressor();
|
|
|
|
// Check prototype
|
|
let prototype = Object.getPrototypeOf(compressor);
|
|
|
|
while (prototype) {
|
|
println(prototype.constructor.name);
|
|
prototype = Object.getPrototypeOf(prototype);
|
|
}
|
|
});
|
|
</script>
|