Skip to main content
","learningResourceType":"Practice problem","educationalLevel":"hard","about":"HTML","teaches":"the preload scanner","url":"https://journeyuncommon.com/quiz/question/9f9f246e-1893-4564-88c9-1163e15d2456","inLanguage":"en","isAccessibleForFree":true,"provider":{"@id":"https://journeyuncommon.com/#organization"},"isPartOf":{"@type":"WebSite","@id":"https://journeyuncommon.com/#website","name":"Journey Uncommon","url":"https://journeyuncommon.com"}}
Journey Uncommon Logo
JourneyUncommon
hardHTMLthe preload scannerSingle-choice MCQ

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>