1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Word-spacing application to 'display: table-caption' element</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#propdef-word-spacing">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-props">
8 <meta name="flags" content="ahem">
9 <meta name="assert" content="The 'word-spacing' property applies to 'display: table-caption' elements.">
10 <style type="text/css">
11 div
12 {
13 font: 16px/1em Ahem;
14 }
15 #table
16 {
17 display: table;
18 width: 22em;
19 }
20 #caption
21 {
22 display: table-caption;
23 word-spacing: 10em;
24 }
25 #row
26 {
27 display: table-row;
28 }
29 #cell
30 {
31 display: table-cell;
32 }
33 #div1
34 {
35 background: blue;
36 height: 1em;
37 width: 22em;
38 }
39 </style>
40 </head>
41 <body>
42 <p>Test passes if there are two black boxes below and the last black box ends when the blue box ends.</p>
43 <div id="table">
44 <div id="caption">XXXXX XXXXXX</div>
45 <div id="row">
46 <div id="cell"></div>
47 </div>
48 </div>
49 <div id="div1"></div>
50 </body>
51 </html>