diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/css/css-flexbox/auto-margins-001-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/auto-margins-001-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/auto-margins-001-ref.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/auto-margins-001-ref.html b/testing/web-platform/tests/css/css-flexbox/auto-margins-001-ref.html new file mode 100644 index 0000000000..57f4307ca0 --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/auto-margins-001-ref.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html> +<head> +<link rel="author" title="Google Inc." href="http://www.google.com/"> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> +<style> + +#circles, #circles div { + border: 1em solid blue; + border-radius:50%; + margin: auto; +} + +#circles { width:9em; height:9em; } + +</style> +</head> +<body> +<p>These tests are from the spec: <a href="http://dev.w3.org/csswg/css3-flexbox/#auto-margins">http://dev.w3.org/csswg/css3-flexbox/#auto-margins</a>.</p> + +<p>The black rectangle should be centered vertically and horizontally.</p> +<div style="width: 4em; height: 4em; background: silver"> + <table style="width: 100%; height: 100%;"><tr><td style="text-align: center; font-family: Ahem;">OK</td></tr></table> +</div> + +<div style="width: 4em; height: 4em; margin-top: 10px; background: silver; writing-mode: vertical-rl"> + <table style="width: 100%; height: 100%;"><tr><td style="text-align: center; font-family: Ahem;">OK</td></tr></table> +</div> + +<p>You should see 3 blue concentric circles.</p> +<div id="circles"> + <div style="width: 5em; height: 5em; margin-top: 1em;"> + <div style="width: 1em; height: 1em; margin-top: 1em;"></div> + </div> +</div> + +<p>The computed style of each margin should not be 0.<br>OK: PASS<br>Vertical OK: PASS</p> +</body> +</html> |