summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/paint-timing/with-first-paint/first-contentful-paint.html
blob: 7d23155b0d60fc66a7647aa8758f7e69b4b15766 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<head>
<title>Performance Paint Timing Test: FP followed by FCP</title>
</head>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="main"></div>
<div id="image"></div>

<script>
setup({"hide_test_state": true});
async_test(function (t) {
    assert_implements(window.PerformancePaintTiming, "Paint Timing isn't supported.");
    const bufferedEntries = performance.getEntriesByType('paint');
    assert_equals(bufferedEntries.length, 0, "No paint entries yet");
    const div = document.createElement("div");
    div.style.width = "100px";
    div.style.height = "100px";
    div.style.backgroundColor = "red";
    div.style.color = "blue";
    document.getElementById("main").appendChild(div);
    function testPaintEntries() {
      const bufferedEntries = performance.getEntriesByType('paint');
      if (bufferedEntries.length < 1) {
        t.step_timeout(function() {
          testPaintEntries();
        }, 20);
        return;
      }
      t.step(function() {
        assert_equals(bufferedEntries.length, 1, "FP only.");
        assert_equals(bufferedEntries[0].entryType, "paint");
        assert_equals(bufferedEntries[0].name, "first-paint");
      });
      const img = document.createElement("IMG");
      img.src = "../resources/circles.png";
      img.onload = function() {
        function secondTestPaintEntries() {
          const moreBufferedEntries = performance.getEntriesByType('paint');
          if (moreBufferedEntries.length < 2) {
            t.step_timeout(function() {
              secondTestPaintEntries();
            }, 20);
            return;
          }
          t.step(function() {
            assert_equals(moreBufferedEntries.length, 2, "FP and FCP.");
            assert_equals(moreBufferedEntries[0].entryType, "paint");
            assert_equals(moreBufferedEntries[0].name, "first-paint");
            const fpEntriesGotByName =
                performance.getEntriesByName('first-paint');
            assert_equals(fpEntriesGotByName.length, 1);
            assert_equals(moreBufferedEntries[0], fpEntriesGotByName[0]);
            assert_equals(moreBufferedEntries[1].entryType, "paint");
            assert_equals(moreBufferedEntries[1].name, "first-contentful-paint");
            const fcpEntriesGotByName =
                performance.getEntriesByName('first-contentful-paint');
            assert_equals(fcpEntriesGotByName.length, 1);
            assert_equals(moreBufferedEntries[1], fcpEntriesGotByName[0]);
            t.done();
          });
        }
        t.step(function() {
          secondTestPaintEntries();
        });
      };
      document.getElementById('image').appendChild(img);
    }
    t.step(function() {
      testPaintEntries();
    });
}, "First Paint triggered by non-contentful paint. Image load triggers First Contentful Paint.");
</script>
</body>
</html>