summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/largest-contentful-paint/image-full-viewport.html
blob: 2f8e17fb3220729eb1ee8841efdb9d3bcc8256d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE HTML>
<meta charset=utf-8>
<title>Largest Contentful Paint: size when image overflows</title>
<!-- In this test, an image with an intrinsic size of 100 x 50 is added, but
  scaled up in order to overflow the viewport. It should not be reported. -->
<body>
<style>
body {
  margin: 0px;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/largest-contentful-paint-helpers.js"></script>
<script>
  const viewportWidth = document.documentElement.clientWidth;
  const viewportHeight = document.documentElement.clientHeight;
  setup({"hide_test_state": true});
  async_test(function (t) {
    assert_implements(window.LargestContentfulPaint, "LargestContentfulPaint is not implemented");
    const beforeLoad = performance.now();
    new PerformanceObserver(
      t.step_func_done(function(entryList) {
        assert_equals(entryList.getEntries().length, 1, 'Should have received only one entry!');
        const entry = entryList.getEntries()[0];
        if (entry.url)
          assert_unreached('Should not have received an image entry!');
      })
    ).observe({type: 'largest-contentful-paint', buffered: true});
    // Add an image, setting width and height equal to viewport.
    img = document.createElement('img');
    img.src = '/images/lcp-100x50.png';
    img.id = 'image_id';
    img.width = viewportWidth * 2;
    img.height = viewportHeight * 2;
    img.onload = () => {
      const p = document.createElement('p');
      p.innerHTML = 'a';
      p.style = 'position: absolute; top: 10px; left: 10px;';
      document.body.appendChild(p);
    }
    document.body.appendChild(img);
  }, 'The intersectionRect of an img element overflowing is computed correctly');
</script>
</body>