summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/channels/child_script.html
blob: 1c10379bdeafbc7e6874f623523a1eaea008b576 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<script src="/resources/channel.sub.js"></script>
<div id="test">FAIL</div>
<script>
(async function() {
    await new Promise(resolve => onload = resolve);
    document.getElementById("test").textContent = "PASS";
    await start_global_channel();
})()
</script>