|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- |
|
3 Any copyright is dedicated to the Public Domain. |
|
4 http://creativecommons.org/publicdomain/zero/1.0/ |
|
5 --> |
|
6 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
7 <head> |
|
8 <title>CSS Reftest Reference</title> |
|
9 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/> |
|
10 <style> |
|
11 div.flexbox { |
|
12 height: 200px; |
|
13 width: 22px; |
|
14 float: left; |
|
15 margin-right: 10px; |
|
16 background: lightgreen; |
|
17 line-height: 0; |
|
18 } |
|
19 fieldset { |
|
20 width: 20px; |
|
21 height: 10px; |
|
22 border: 1px dotted green; |
|
23 margin: 0; |
|
24 padding: 0; |
|
25 } |
|
26 </style> |
|
27 </head> |
|
28 <body> |
|
29 <div class="flexbox"> |
|
30 <fieldset/> |
|
31 </div> |
|
32 |
|
33 <div class="flexbox"> |
|
34 <div style="font: 8px monospace; height: 188px"> |
|
35 a b |
|
36 </div> |
|
37 <fieldset/> |
|
38 </div> |
|
39 |
|
40 <div class="flexbox"> |
|
41 <fieldset style="height: 122.5px" |
|
42 /><fieldset style="height: 73.5px"/> |
|
43 </div> |
|
44 |
|
45 <div class="flexbox"> |
|
46 <fieldset style="height: 93px" |
|
47 /><fieldset style="height: 103px"/> |
|
48 </div> |
|
49 |
|
50 <div class="flexbox"> |
|
51 <fieldset style="height: 114px" |
|
52 /><fieldset style="height: 82px"/> |
|
53 </div> |
|
54 |
|
55 <div class="flexbox"> |
|
56 <fieldset style="height: 106px" |
|
57 /><fieldset style="height: 90px"/> |
|
58 </div> |
|
59 |
|
60 <div class="flexbox"> |
|
61 <fieldset style="height: 46px" |
|
62 /><fieldset style="height: 150px"/> |
|
63 </div> |
|
64 |
|
65 </body> |
|
66 </html> |