wpt / css / css-anchor-position / anchored-c-v-hidden.html

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

/css/css-anchor-position/anchored-c-v-hidden.html

<!DOCTYPE html>
<title>CSS Anchor Positioning Test: Anchor positioned element with content-visibility:hidden</title>
<link rel="help" href="https://drafts.csswg.org/css-anchor-1/">
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<style>
  #anchor {
    anchor-name: --a;
    width: 100px;
    height: 100px;
  }
  #anchored {
    position: absolute;
    position-anchor: --a;
    position-area: center;
    content-visibility: hidden;
    width: 100px;
    height: 100px;
    background-color: green;
  }
  #fail { background-color: red; }
</style>
<p>Test passes if there is a filled green square.</p>
<div id="anchor"></div>
<div id="anchored">
  <div id="fail">FAIL</div>
</div>

/css/reference/ref-filled-green-100px-square-only.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<p>Test passes if there is a filled green square.</p>
<div style="width:100px; height:100px; background:green;"></div>