summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/inset-area-scroll-adjust.html
blob: 0d3cef4fc9631037dd362de8f710362f23ea4f4b (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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<title>CSS Anchor Positioning: inset-area anchored against scrolling anchor</title>
<link rel="help" href="https://drafts.csswg.org/css-anchor-position/#inset-area">
<link rel="match" href="inset-area-scroll-adjust-ref.html">
<style>
  #scroller {
    width: 400px;
    height: 200px;
    overflow: auto;
  }
  #anchor {
    background: green;
    width: 200px;
    height: 100px;
  }
  #anchored {
    inset-area: bottom;
    margin: 0;
    padding: 0;
    border: none;
    background: green;
    width: 200px;
    height: 100px;
  }
  .filler { height: 200px; }
</style>
<p>You should see a green square below</p>
<div id="scroller">
  <div class="filler"></div>
  <div id="anchor" popovertarget="anchored"></div>
  <div id="anchored" anchor="anchor" popover></div>
  <div class="filler"></div>
  <div class="filler"></div>
</div>
<script>
  anchored.showPopover();
  scroller.scrollTop = 200;
</script>