summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/legend/legend-padding-2-ref.html
blob: 4050ab7c26cbaa6fbf08181d3007b7d42651366b (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
44
<!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>