Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-sizing/div-top-and-non-auto-margin.tentative.html
<!DOCTYPE HTML> <title> Ensure top doesn't take effect if margin isn't auto </title> <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973"> <link rel="match" href="div-top-and-non-auto-margin-ref.html"> <style> #outer { inset: 0; background-color: black; margin: auto; top: 10px; margin-bottom: 10px; position: absolute; block-size: max-content; inline-size: 100px; border: 5px solid red; } </style> <div id="outer"><div style="block-size: 200px;"></div></div>
/css/css-sizing/div-top-and-non-auto-margin-ref.html
<!DOCTYPE HTML> <title> Ensure top doesn't take effect if margin isn't auto </title> <style> div { inset: 0; background-color: black; margin: auto; margin-bottom: 10px; position: absolute; block-size: 200px; inline-size: 100px; border: 5px solid red; } </style> <div></div>