summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/cached/bfcache/worker-iframe-container.html
blob: 857914bb6ddd3d35bb2fb04e8dbae37b523ba758 (plain)
1
2
3
4
5
6
7
8
9
10
11
<body>BFCached<a href="target.html">next</a></body>
<script>
  window.addEventListener('DOMContentLoaded', () => {
    const iframe = document.createElement('iframe');
    const url = new URL(location.href);
    url.hostname = url.hostname === 'localhost' ? '127.0.0.1' : 'localhost';
    url.pathname = '/cached/bfcache/worker-iframe.html';
    iframe.src = url.toString();
    document.body.appendChild(iframe);
  }, false);
</script>