A page sets an <img> source dynamically via an inline script before any literal <img> tag appears for that resource. Relative to the preload scanner, what is the practical consequence for that image's fetch start time?
<script>
const img = new Image();
img.src = '/hero.jpg'; // not in literal markup
document.body.appendChild(img);
</script>