Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / flexbox / flexbox-min-bsize-keywords-vert-1-ref.html
blob7593db06f781d2eb52f9311405d9efb4f80251c9
1 <!DOCTYPE html>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html>
7 <head>
8 <title>CSS Reference Case</title>
9 <meta charset="utf-8">
10 <style>
11 .container {
12 width: -moz-fit-content;
14 .container > * {
15 border: 1px solid black;
17 .itemA {
18 background: purple;
20 .itemB {
21 background: teal;
23 .itemC {
24 background: blue;
26 .itemD {
27 background: yellow;
29 </style>
30 </head>
31 <body>
32 <div class="container">
33 <div class="itemA">itemA</div>
34 <div class="itemB">itemB</div>
35 <div class="itemC">itemC</div>
36 <div class="itemD">itemD</div>
37 </div>
38 </body>
39 </html>