summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/block/margin-collapse/010.html
blob: 7af3de32840dc2c692a383589c638c18880dade3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html lang="en">
 <head>
  <title>Margin Collapsing: in flow (simple)</title>
  <style type="text/css">
   table { border-spacing: 0; font-size: 50px; border: solid; background: orange; }
   td { padding: 0; }
   div { height: 1em; width: 1em; }
   .a { background: lime; }
   .b { background: yellow; }
   /* column 1 */
   .t1 .a { margin: 1em 0 1em; }
   .t1 .b { margin: 1em 0 1em; }
   /* column 2 */
   .t2 .a { margin: 1em 0 1em; }
   .t2 .b { margin: 0em 0 1em; }
   /* column 3 */
   .t3 .a { margin: 1em 0 0em; }
   .t3 .b { margin: 1em 0 1em; }
   /* column 4 */
   .t4 .a { margin: 1em 0 2em; }
   .t4 .b { margin: -1em 0 1em; }
   /* column 5 */
   .t5 .a { margin: 1em 0 -1em; }
   .t5 .b { margin: 2em 0 1em; }
  </style>
 </head>
 <body>
  <p>The square should consist of exactly five equal bands, orange, lime, orange, yellow, orange.</p>
  <table>
   <tr>
    <td class="t1">
     <div class="a"></div>
     <div class="b"></div>
    </td>
    <td class="t2">
     <div class="a"></div>
     <div class="b"></div>
    </td>
    <td class="t3">
     <div class="a"></div>
     <div class="b"></div>
    </td>
    <td class="t4">
     <div class="a"></div>
     <div class="b"></div>
    </td>
    <td class="t5">
     <div class="a"></div>
     <div class="b"></div>
    </td>
   </tr>
  </table>
  <p>This test is meaningless if you don't pass <a href="006.html#">test 006</a>.</p>
 </body>
</html>