mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-16 16:12:53 +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>
|