ladybird/Tests/LibWeb/Layout/input/display-table-column-crash.html

21 lines
321 B
HTML

<!DOCTYPE html>
<head>
<style>
#test {
display: table-column-group;
clear: both;
}
.col {
display: table-column;
}
</style>
</head>
<body>
<div id="test">
<div class="col"></div>
<div class="col"></div>
</div>
</body>