You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="This test verifies that the table's content height matches its final cross-size, and the table cells do not re-resolve their percentage heights based on the table's content height.">
<style>
.flex {
display: flex;
}
table {
border-spacing: 0;
width: 100px;
background: green;
}
tr {
height: 50px;
}
td {
height: 100%;
}
</style>
<p>Test passes if there is a filled green square.</p>