blob: b9146798946844b3a6f921bdd66e9c6c10e963d7 [file]
<html>
<body>
<script>
let frame = document.createElement('iframe');
frame.srcdoc = '';
document.body.appendChild(frame);
// The fetch below will fail eventually, but the request will reach the
// browser.
frame.contentWindow.fetch('subresources/xhr_target.txt')
.catch((error) => {});
</script>
</body>
</html>