|
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 { height: 100px; border: 0; } |
|
12 div.flexbox { |
|
13 width: 200px; |
|
14 } |
|
15 div.a { |
|
16 display: inline-block; |
|
17 background: lightgreen; |
|
18 border-style: dotted; |
|
19 border-left-width: 2px; |
|
20 border-right-width: 4px; |
|
21 } |
|
22 div.b { |
|
23 display: inline-block; |
|
24 background: yellow; |
|
25 border-style: dashed; |
|
26 border-left-width: 7px; |
|
27 border-right-width: 3px; |
|
28 } |
|
29 div.c { |
|
30 display: inline-block; |
|
31 background: orange; |
|
32 } |
|
33 div.flexNone { |
|
34 display: inline-block; |
|
35 background: pink; |
|
36 } |
|
37 div.flexBasis { |
|
38 display: inline-block; |
|
39 background: gray; |
|
40 } |
|
41 div.spacer { |
|
42 height: 15px; |
|
43 background: purple; |
|
44 } |
|
45 </style> |
|
46 </head> |
|
47 <body> |
|
48 <div class="flexbox"> |
|
49 <div class="b" style="width: 110px"/><div class="a" style="width: 74px"/> |
|
50 </div> |
|
51 <div class="flexbox"> |
|
52 <div class="c" style="width: 137.5px"/><div class="a" style="width: 56.5px"/> |
|
53 </div> |
|
54 <div class="flexbox"> |
|
55 <div class="flexNone"><div class="spacer" style="width: 15px"/> |
|
56 </div><div class="a" style="width: 179px"/> |
|
57 </div> |
|
58 <div class="flexbox"> |
|
59 <div class="c" style="width: 124px" |
|
60 /><div class="b" style="width: 66px"/> |
|
61 </div> |
|
62 <div class="flexbox"> |
|
63 <div class="flexNone"><div class="spacer" style="width: 30px"/> |
|
64 </div><div class="b" style="width: 160px"/> |
|
65 </div> |
|
66 <div class="flexbox"> |
|
67 <div class="c" style="width: 85px" |
|
68 /><div class="flexBasis" style="width: 20px" |
|
69 /><div class="b" style="width: 40px" |
|
70 /><div class="a" style="width: 39px"/> |
|
71 </div> |
|
72 </body> |
|
73 </html> |
|
74 |