summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/largest-contentful-paint/animated/observe-video.tentative.html
blob: 49bdd986f6c728f1f3a172e42f4bf14d5ab64388 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset=utf-8>
  <title>Largest Contentful Paint: observe video.</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="../resources/largest-contentful-paint-helpers.js"></script>
</head>
<body>
  <script>
    promise_test(async () => {
      assert_implements(window.LargestContentfulPaint,
                        "LargestContentfulPaint is not implemented");
      const beforeLoad = performance.now();
      // 136 is the size of the animated GIF up until the first frame.
      // The trickle pipe delays the response after the first frame by 1 second.
      const url = window.location.origin +
                  `/media/test-1s.webm?pipe=trickle(1500:d${delay_pipe_value})`;
      const entry = await load_video_and_observe(url);
      // Video is 320 x 184.
      const size = 320 * 184;
      // TODO(yoav): Validate size as well as load and render times. "skip" is
      // currently causing those checks to be skipped.
      checkImage(entry, url, 'video_id', size, beforeLoad, ["skip"]);
    }, "Same origin animated image is observable and has a first frame.");
  </script>
</body>
</html>