1
0
Fork 0
firefox/layout/reftests/css-break/1405443.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
414 B
HTML

<!DOCTYPE html>
<style>
#float { page-break-inside: avoid; float: left }
span { padding-left: 1px; }
#columns { columns: 0px; column-gap: 0; )
</style>
<body>
There word 'Hello' should appear below.
<div id="columns">
H
<div id="float">
<span> <!-- Just need an inline with nonzero width -->
<div style="padding-left: 1ch">&nbsp;ello</div>
</span>
</div>
</div>
</body>