summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/idle-callbacks/resources/post_name_on_load.html
blob: 4679a6e6ec73ea4c2dae646b0f027dd7f2ce6823 (plain)
1
2
3
4
5
6
7
<!doctype html>
<script>
  addEventListener('load', _ => {
    let params = new URLSearchParams(window.location.search);
    window.opener.postMessage(params.get('name'), '*');
  });
</script>