haikuwebkit/LayoutTests/fast/table/assert-on-min-max-content-v...

21 lines
448 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>This tests that we don't assert on tables with min/max-content values.</title>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
PASS if no assert in debug.
<table style="-webkit-writing-mode: vertical-rl;">
<tbody>
<tr style="width: min-content;"></tr>
<tr style="width: max-content;"></tr>
<tr style="width: calc(50px - 10%);"></tr>
</tbody>
</table>
</body>
</html>