summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/resources/auto-expand-details-text-fragment.html
blob: b95459fe5c03a91e0baa2ab8f4b1b0503a059e46 (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
26
27
<!DOCTYPE html>
<script src="/scroll-to-text-fragment/stash.js"></script>

<!-- This test is navigated to with the fragment #:~:text=foo -->

<body>
  <div style="height: 4000px;">spacer</div>
  <details>
    <div>foo</div>
  </details>
  <script>
    requestAnimationFrame(() => {
      requestAnimationFrame(() => {
        const results = {};
        // This should be true. The details element should be opened by
        // ScrollToTextFragment because it has matching text.
        results.detailsHasOpenAttribute = document.querySelector('details').hasAttribute('open');
        // This should be greater than zero. The page should be scrolled down
        // to the matching target.
        results.pageYOffsetAfterRaf = window.pageYOffset;

        params = new URLSearchParams(window.location.search);
        stashResultsThenClose(params.get('key'), results);
      });
    });
  </script>
</body>