Files
Kmake/test/fixtures/wpt/webmessaging/broadcastchannel/resources/sandboxed.html
2026-05-26 23:36:42 -07:00

11 lines
206 B
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<script>
try {
let c = new BroadcastChannel('foo');
parent.postMessage('Created', '*');
} catch (e) {
parent.postMessage('Exception: ' + e.name, '*');
}
</script>