summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/long-animation-frame/tentative/loaf-supportedEntryTypes.html
blob: efa01481fa18b935fdace923b039065404a969d1 (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>
<meta charset=utf-8>
<title>Long Animation Frame Timing: supportedEntryTypes</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<body>
<h1>Long Animation Frame: supportedEntryTypes</h1>
<div id="log"></div>
<script>

setup(() =>
  assert_implements(window.PerformanceLongAnimationFrameTiming,
    'Long animation frames are not supported.'));

test(() => {
  assert_true(PerformanceObserver.supportedEntryTypes.includes("long-animation-frame"));
}, 'supportedEntryTypes should include long-animation-frame');

</script>
</body>