diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/absolute-tables-012.html')
-rw-r--r-- | testing/web-platform/tests/css/css-tables/absolute-tables-012.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/absolute-tables-012.html b/testing/web-platform/tests/css/css-tables/absolute-tables-012.html new file mode 100644 index 0000000000..76dc0bf9e8 --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/absolute-tables-012.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<link rel="help" href="https://drafts.csswg.org/css-tables-3/#abspos"> +<link rel="help" href="https://crbug.com/1123475"> +<link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> +<meta name="assert" content="When sizing abspos tables with `table-layout: fixed`, the max-content size shouldn't be infinite."> +<p>Test passes if there is a filled green square.</p> +<div style="position: relative; width: 200px;"> + <table style="position: absolute; width: 50%; height: 100px; table-layout: fixed; background: green;"></table> +</div> |