mirror of
https://github.com/servo/servo.git
synced 2025-07-12 01:43:43 +01:00
10 lines
206 B
HTML
10 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>
|