1339287-ref.html (904B)
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"> 10 11 html,body { 12 color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0; 13 } 14 15 fieldset { border:1px solid black; } /* solid border is less likely to cause AA issues */ 16 17 </style> 18 </head> 19 <body> 20 21 <fieldset> 22 <legend style="display:inline-flex"> 23 Headline Instructions 24 </legend> 25 </fieldset> 26 27 <fieldset> 28 <legend style="display:inline-grid"> 29 Headline Instructions 30 </legend> 31 </fieldset> 32 33 <fieldset> 34 <legend style="display:flex"> 35 Headline Instructions 36 </legend> 37 </fieldset> 38 39 <fieldset> 40 <legend style="display:grid"> 41 Headline Instructions 42 </legend> 43 </fieldset> 44 45 </body> 46 </html>