comparison: layout/reftests/margin-collapsing/block-non-sibling-3a.html
layout/reftests/margin-collapsing/block-non-sibling-3a.html
- branch
- TOR_BUG_3246
- changeset 6
- 8bccb770b82d
equal
deleted
inserted
replaced
|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <style type="text/css"> |
|
5 #a { |
|
6 background-color: green; |
|
7 margin-bottom: 10px; |
|
8 } |
|
9 #a div { |
|
10 height: 20px; |
|
11 margin-bottom: 20px; |
|
12 } |
|
13 #b { |
|
14 background-color: green; |
|
15 margin-top: 40px; |
|
16 } |
|
17 #b div { |
|
18 height: 20px; |
|
19 margin-top: 80px; |
|
20 } |
|
21 </style> |
|
22 </head> |
|
23 <body> |
|
24 <div id="a"> |
|
25 <div></div> |
|
26 </div> |
|
27 <div id="b"> |
|
28 <div></div> |
|
29 </div> |
|
30 </body> |
|
31 </html> |