summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-inline-size-legend.html
blob: 13c8d7d7f469e000952283dbd1cad4356eb491fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<title>contain:inline-size on legend</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#contain-property">
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#containment-inline-size">
<link rel="match" href="contain-inline-size-legend-ref.html">
<p>There should be blue square (legend), and a yellow square below it (fieldset
  content).</p>
<fieldset style="width:fit-content; min-width:0;">
  <legend style="contain:inline-size; border:solid blue; border-width:0 50px; padding:0; background:red;">
    <div style="width:500px; height:100px;"></div>
  </legend>
  <div style="height:100px; background:yellow;"></div>
</fieldset>