summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-img-element/image-loading-subpixel-clip-ref.html
blob: f841dba31bd255b17afa8a1c7129b6998294c154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<style>
* {
  margin: 0;
}
</style>
<html class="reftest-wait" style="overflow: hidden">
  <head>
    <title>Images with loading='lazy' load under subpixel-offset clips</title>
    <link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
    <link rel="help" href="https://html.spec.whatwg.org/#lazy-loading-attributes">
  </head>
  <div style="height: 44.5px"></div>
  <div style="position: relative; font-size: 0; background: lightblue">
    <img id=target loading="lazy" data-sizes="auto">
  </div>
</html>
<script src="/common/reftest-wait.js"></script>
<script>
  target.onload = takeScreenshot;
  target.src = "resources/image.png";
</script>