summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/soft-navigation-heuristics/supported-entry-types.tentative.html
blob: 4ab408e10b1e504961715779d3f08e70f37dc665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Soft navigations are a supported entry type</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  promise_test(async () => {
    assert_true(PerformanceObserver.supportedEntryTypes.includes(
      "soft-navigation"));
  }, "Soft navigations are a supported entry type");
</script>