summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/largest-contentful-paint/supported-lcp-type.html
blob: 25d4eaa0367f45440d286c6c1c14de4458465d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<head>
<title>PerformanceObserver.supportedEntryTypes contains "largest-contentful-paint"</title>
</head>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
  if (typeof PerformanceObserver.supportedEntryTypes === "undefined")
    assert_unreached("supportedEntryTypes is not supported.");
  assert_greater_than(PerformanceObserver.supportedEntryTypes.indexOf("largest-contentful-paint"), -1,
    "There should be an entry 'largest-contentful-paint' in PerformanceObserver.supportedEntryTypes");
}, "supportedEntryTypes contains 'largest-contentful-paint'.");
</script>
</body>
</html>