| |
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 img { |
| |
20 width: 20px; |
| |
21 height: 10px; |
| |
22 border: 1px dotted green; |
| |
23 } |
| |
24 </style> |
| |
25 </head> |
| |
26 <body> |
| |
27 <div class="flexbox"> |
| |
28 <img src="support/solidblue.png"/> |
| |
29 </div> |
| |
30 |
| |
31 <div class="flexbox"> |
| |
32 <div style="font: 8px monospace; height: 188px"> |
| |
33 a b |
| |
34 </div> |
| |
35 <img src="support/solidblue.png"/> |
| |
36 </div> |
| |
37 |
| |
38 <div class="flexbox"> |
| |
39 <img src="support/solidblue.png" style="height: 122.5px" |
| |
40 /><img src="support/solidblue.png" style="height: 73.5px"/> |
| |
41 </div> |
| |
42 |
| |
43 <div class="flexbox"> |
| |
44 <img src="support/solidblue.png" style="height: 93px" |
| |
45 /><img src="support/solidblue.png" style="height: 103px"/> |
| |
46 </div> |
| |
47 |
| |
48 <div class="flexbox"> |
| |
49 <img src="support/solidblue.png" style="height: 114px" |
| |
50 /><img src="support/solidblue.png" style="height: 82px"/> |
| |
51 </div> |
| |
52 |
| |
53 <div class="flexbox"> |
| |
54 <img src="support/solidblue.png" style="height: 106px" |
| |
55 /><img src="support/solidblue.png" style="height: 90px"/> |
| |
56 </div> |
| |
57 |
| |
58 <div class="flexbox"> |
| |
59 <img src="support/solidblue.png" style="height: 46px" |
| |
60 /><img src="support/solidblue.png" style="height: 150px"/> |
| |
61 </div> |
| |
62 |
| |
63 </body> |
| |
64 </html> |