diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-sizing/div-top-and-non-auto-margin.tentative.html')
-rw-r--r-- | testing/web-platform/tests/css/css-sizing/div-top-and-non-auto-margin.tentative.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/div-top-and-non-auto-margin.tentative.html b/testing/web-platform/tests/css/css-sizing/div-top-and-non-auto-margin.tentative.html new file mode 100644 index 0000000000..326eb28171 --- /dev/null +++ b/testing/web-platform/tests/css/css-sizing/div-top-and-non-auto-margin.tentative.html @@ -0,0 +1,18 @@ +<!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> |