| 12
 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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 
 | <!DOCTYPE html>
<title>Tests that position fallback responds to scrolling</title>
<link rel="author" href="mailto:xiaochengh@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-anchor-1/#scroll">
<link rel="help" href="https://drafts.csswg.org/css-anchor-1/#fallback-apply">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/test-common.js"></script>
<style>
#cb {
  width: 400px;
  height: 400px;
  margin: 100px;
  transform: scale(1);
  outline: 1px solid black;
}
#scroller {
  width: 400px;
  height: 400px;
  overflow: scroll;
}
#anchor {
  width: 100px;
  height: 100px;
  margin-left: 150px;
  margin-right: 275px;
  margin-top: 300px;
  margin-bottom: 300px;
  background: orange;
  anchor-name: --a;
}
#anchored {
  position: absolute;
  background: green;
  position-anchor: --a;
  position-try-options: --f1, --f2;
  width: 100px; height: 100px;
  /* Above the anchor */
  left: anchor(left);
  bottom: anchor(top);
}
@position-try --f1 {
  /* Left of the anchor */
  right: anchor(left);
  top: anchor(top);
  bottom: auto;
  left: auto;
}
@position-try --f2 {
  /* Right of the anchor */
  left: anchor(right);
  top: anchor(top);
  bottom: auto;
}
</style>
<div id="cb">
  <div id="scroller">
    <div id="anchor"></div>
  </div>
  <div id="anchored"></div>
</div>
<script>
promise_test(async () => {
  await waitUntilNextAnimationFrame();
  assert_fallback_position(anchored, anchor, 'top');
}, 'Should be above the anchor when at initial scroll position');
promise_test(async () => {
  scroller.scrollTop = 200;
  await waitUntilNextAnimationFrame();
  assert_fallback_position(anchored, anchor, 'top');
}, 'Scroll down until the top edge of #anchor touches container but not overflowing');
promise_test(async () => {
  scroller.scrollTop = 201;
  await waitUntilNextAnimationFrame();
  assert_fallback_position(anchored, anchor, 'left');
}, 'Scroll further down, making the first fallback position overflow by 1px');
promise_test(async () => {
  scroller.scrollTop = 200;
  await waitUntilNextAnimationFrame();
  assert_fallback_position(anchored, anchor, 'top');
}, 'Scroll back up to reuse the first fallback position');
promise_test(async () => {
  scroller.scrollTop = 249;
  scroller.scrollLeft = 51;
  await waitUntilNextAnimationFrame();
  assert_fallback_position(anchored, anchor, 'right');
}, 'Scroll bottom-right to make the first three fallback positions overflow');
</script>
 |