Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-anchor-position/anchor-center-no-default.html
<!DOCTYPE html> <title>CSS Anchor Positioning: 'anchor-center' behaves as 'center' with no default anchor</title> <link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/#anchor-center"> <link rel="match" href="anchor-center-no-default-ref.html"> <style> #centered { position: absolute; align-self: anchor-center; } </style> <div id="centered">This text should not be centered in the viewport</div>
/css/css-anchor-position/anchor-center-no-default-ref.html
<!DOCTYPE html> <title>CSS Test Reference</title> <div style="position:absolute;align-self:center">This text should not be centered in the viewport</div>