blob: 950d8d1833cbc6673887615db1408239ddc720ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!DOCTYPE html>
<html>
<head>
<title>Reference for bug 1483499</title>
<style>
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: 0px 2px;
}
</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>
|