blob: 7c92b6cc17531f6cd43857e1f5f92cd6de540e98 [file] [log] [blame]
<script src="common.js"></script>
<script>
const url = new URL('../../resources/square.png', location);
observeAndReportResourceLoadPriority(url);
const image = new Image();
image.src = url;
image.onload = reportLoaded;
image.onerror = reportFailure;
</script>