playwright/tests/assets/inner-oopif.html

11 lines
305 B
HTML

<script>
window.addEventListener('DOMContentLoaded', () => {
const iframe = document.createElement('iframe');
const url = new URL(location.href);
url.hostname = '127.0.0.2';
url.pathname = '/one-style.html';
iframe.src = url.toString();
document.body.appendChild(iframe);
}, false);
</script>