https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 52568d10660dfb0ce950f6983b20228374602efe authored by Nick Thomas on 14 November 2019, 03:15:51 UTC
Bug 1595632 - don't hardcode TC root url for release start emails, r=Callek a=NPOTB
Tip revision: 52568d1
legend-padding-1-ref.html
<!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>
back to top