summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/soft-navigation-heuristics/soft-navigation-detection-non-main.tentative.html
blob: 86da167c3393903dfb3fe01e59a9bbfb216d5a44 (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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Detect simple soft navigation.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/soft-navigation-helper.js"></script>
</head>
<body>
  <a id=link>Click me!</a>
  <script>
    const link = document.getElementById("link");
    testSoftNavigation({
      addContent: async () => {
        await addImage(document.body);
      },
      link: link,
      test: "Test that a soft navigation is detected on a non-main element"});
  </script>
</body>
</html>