mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
11 lines
244 B
HTML
11 lines
244 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let channel = new MessageChannel();
|
|
let port = channel.port2;
|
|
port.close();
|
|
port.start();
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|