1
0
Fork 0
firefox/layout/reftests/forms/fieldset/fieldset-grid-001-ref.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

33 lines
500 B
HTML

<!DOCTYPE HTML>
<html>
<body>
<fieldset style="overflow:hidden; width:200px; height:200px;">
<legend>Legend</legend>
<div style="display:grid; grid-template-columns: repeat(4,50px); grid-auto-rows: 20px;">
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
</div>
</fieldset>
<fieldset>
<legend>Legend</legend>
<div style="display:grid; grid-auto-columns: 50px; grid-auto-rows: 20px;">
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
</div>
</fieldset>
</body>
</html>