summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/element-timing/supported-element-type.html
blob: 15733d46f95c9079acfec06cdd25f70ca0e056a6 (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 "element"</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("element"), -1,
    "There should be an entry 'element' in PerformanceObserver.supportedEntryTypes");
}, "supportedEntryTypes contains 'element'.");
</script>
</body>
</html>