summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/dynamic-oopif.html
blob: 38614d0289e12fd8926b746af6fd6505fcef8bbb (plain)
1
2
3
4
5
6
7
8
9
10
<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 = '/oopif.html';
  iframe.src = url.toString();
  document.body.appendChild(iframe);
}, false);
</script>