summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/tables-001.xht
blob: 3dbf405a9db9310afc9032fe8a87ec12c135b9c5 (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Test: CSS Tables: Nested anonymous table objects and border-spacing</title>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/table/009.xml" type="application/xhtml+xml"/>
  <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes" />
  <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#separated-borders" />
  <meta name="assert" content="border-spacing is applied around anonymous table objects, but anonymous table objects only exist if the table has content."/>
  <style type="text/css">

    /* test */
    body * { display: table-cell; } /* turn any non-existent elements into table cells */
    .table { display: table; background: red; }
    .row   { display: table-row; }
    /* reset all the other properties that might give us gaps */
    .table, .row { padding: 0; margin: 0; border: 0; border-spacing: 1em; }

    /* control */
    .table, .control { position: absolute; top: 4em; left: 2em; }
    .control { display: block; height: 2em; width: 2em; background: green; }

  </style>
 </head>
 <body>
  <p>Test passes if there is a green square below and no red.</p>
  <div class="table">
   <div class="row">
    <div class="table"/>
    <!-- nothing -->
   </div>
  </div>
  <div class="control"/>
 </body>
</html>