Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-img-element/image-loading-lazy-slow-aspect-ratio.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="image-loading-lazy-slow-aspect-ratio-ref.html">
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
<script src="/common/reftest-wait.js"></script>
<img id=target loading="lazy"
width="200" height="100" style="width: 100px; height: auto; border: 1px solid black">
<script>
let loaded = false;
target.onload = () => {
if (loaded) return;
loaded = true;
target.src = "";
requestAnimationFrame(() => requestAnimationFrame(() => {
target.src = "resources/image.png?slow-aspect-ratio&pipe=trickle(d2)";
takeScreenshot();
}));
};
target.src = "resources/image.png?slow-aspect-ratio";
</script>