wpt / css / css-anchor-position / anchor-abspos-to-fixedpos-003.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-anchor-position/anchor-abspos-to-fixedpos-003.html

<!DOCTYPE html>
<title>Abspos element anchored to fixed-positioned anchor: scroll position 1000px</title>
<link rel="author" href="mailto:fantasai@inkedblade.net">
<link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/">
<link rel="match" href="reference/anchor-abspos-to-fixedpos-003-ref.html">
<style>
body {
  margin: 0;
  height: 2000px;
}

div {
  width: 100px;
  height: 100px;
}

#anchor {
  position: fixed;
  left: 0;
  top: 0;
  anchor-name: --a;
  background: orange;
}

#anchored {
  position: absolute;
  position-anchor: --a;
  position-area: bottom right;
  background: green;
}
</style>

<div id="anchor"></div>
<div id="anchored"></div>

<script>
document.documentElement.scrollTop = 1000;
</script>

/css/css-anchor-position/reference/anchor-abspos-to-fixedpos-003-ref.html

<!DOCTYPE html>
<style>
body {
  margin: 0;
  height: 2000px;
}

div {
  width: 100px;
  height: 100px;
}

#anchor {
  position: fixed;
  left: 0;
  top: 0;
  background: orange;
}

#anchored {
  position: fixed;
  left: 100px;
  top: 100px;
  background: green;
}
</style>

<div id="anchor"></div>
<div id="anchored"></div>

<script>
document.documentElement.scrollTop = 1000;
</script>