1
0
Fork 0
firefox/layout/reftests/flexbox/flexbox-table-flex-items-4.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

54 lines
1.1 KiB
HTML

<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<meta charset="utf-8">
<title>
CSS Test: Testing that tables with "table-layout:fixed" can shrink
from their default flex base size to fit their multi-line flex container.
</title>
<style>
.container {
display: flex;
flex-wrap: wrap;
width: 300px;
border: 1px solid black;
font: 12px monospace;
margin-bottom: 5px;
}
.forceMaxContent > * {
width: max-content;
}
.container > * {
display: flex;
padding: 5px 10px;
}
table {
width: 100%;
table-layout: fixed;
background: lightgray;
}
</style>
</head>
<body>
<div class="container">
<div>
<table><td>a</td></table>
</div>
<div>
<table><td>b</td></table>
</div>
</div>
<div class="container forceMaxContent">
<div>
<table><td>a</td></table>
</div>
<div>
<table><td>b</td></table>
</div>
</div>
</body>
</html>