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

22 lines
321 B
HTML
Raw Normal View History

<!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>