1
0
Fork 0
firefox/layout/reftests/forms/legend/legend-padding-2-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

44 lines
1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Reference for bug 1483499</title>
<style>
html { writing-mode: vertical-rl }
legend, .legendRef {
/* Here in the reference case, we explicitly specify padding, and we also
use a custom-styled div as the reference case for any legend element
that is not directly snapped into a fieldset border. */
background: yellow;
border: 1px solid brown;
padding: 2px 0px;
}
</style>
</head>
<body>
<!-- Test: legend default styling shouldn't be affected
by presence of a display:contents wrapper: -->
<fieldset>
<legend>DisplayContentsWrapper</legend>
</fieldset>
<br>
<!-- Test: legend should get the same 2px of inline-axis padding, even
if it's not inside of a fieldset at all. -->
<div class="legendRef">JustALegend</div>
<br>
<div class="legendRef">
<div class="legendRef">NestedLegend</div>
</div>
<br>
<fieldset>
<legend>
<div class="legendRef">
<div class="legendRef">NestedLegendInFieldset</div>
</div>
</legend>
</fieldset>
</body>
</html>