Bug 1935035 - Update a macOS-only test that hard-codes child count.
[gecko.git] / layout / reftests / forms / legend / 1339287.html
blob482663f79fb8a924c4fb6e5ceee3823de7c882f7
1 <!DOCTYPE HTML>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html><head>
7 <meta charset="utf-8">
8 <title>Testcase for bug 1339287</title>
9 <style type="text/css">
11 html,body {
12 color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
15 fieldset { border:1px solid black; } /* solid border is less likely to cause AA issues */
17 </style>
18 </head>
19 <body>
21 <fieldset>
22 <legend style="display:inline-flex">
23 Headline
24 <span>
25 Instructions
26 </span>
27 </legend>
28 </fieldset>
30 <fieldset>
31 <legend style="display:inline-grid">
32 Headline
33 <span>
34 Instructions
35 </span>
36 </legend>
37 </fieldset>
39 <fieldset>
40 <legend style="display:flex">
41 Headline
42 <span>
43 Instructions
44 </span>
45 </legend>
46 </fieldset>
48 <fieldset>
49 <legend style="display:grid">
50 Headline
51 <span>
52 Instructions
53 </span>
54 </legend>
55 </fieldset>
57 </body>
58 </html>