diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-sizing/div-min-content-auto-margin-top.tentative.html')
-rw-r--r-- | testing/web-platform/tests/css/css-sizing/div-min-content-auto-margin-top.tentative.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/div-min-content-auto-margin-top.tentative.html b/testing/web-platform/tests/css/css-sizing/div-min-content-auto-margin-top.tentative.html new file mode 100644 index 0000000000..ab10578de0 --- /dev/null +++ b/testing/web-platform/tests/css/css-sizing/div-min-content-auto-margin-top.tentative.html @@ -0,0 +1,17 @@ +<!DOCTYPE HTML> +<title> Ensure top takes effect after element is centered </title> +<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973"> +<link rel="match" href="div-auto-margin-top-ref.html"> +<style> + #outer { + inset: 0; + background-color: black; + margin: auto; + top: 10px; + position: absolute; + block-size: min-content; + inline-size: 100px; + border: 5px solid red; + } +</style> +<div id="outer"><div style="block-size: 200px;"></div></div> |