Files
ladybird/Tests/LibWeb/Layout/input/space-is-soft-line-break-opportunity.html
2025-06-07 11:09:53 +01:00

14 lines
246 B
HTML

<!DOCTYPE html>
<style>
.fixed_width {
max-width: 50px;
border: 1px solid black;
}
.nowrap {
white-space: nowrap;
}
</style>
<div class="fixed_width">
<span class="nowrap">ABC</span><span> </span><span class="nowrap">ABC</span>
</div>