mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:07:35 +00:00
10 lines
244 B
HTML
10 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>
|