mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +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>
|