padding-applies-to-015

Padding applied to element with display table-caption

WeasyPrint

This browser

Assertion
The 'padding' property applies to elements with a display of table-caption.

Source

 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: Padding applied to element with display table-caption</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-padding">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#padding-properties">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="The 'padding' property applies to elements with a display of table-caption.">
10         <style type="text/css">
11             #table
12             {
13                 display: table;
14             }
15             #test
16             {
17                 border: 10px solid blue;
18                 display: table-caption;
19                 padding: 50px;
20                 width: 200px;
21             }
22             #test div
23             {
24                 border: 10px solid orange;
25                 height: 200px;
26             }
27             #row
28             {
29                 display: table-row;
30             }
31             #cell
32             {
33                 display: table-cell;
34             }
35         </style>
36     </head>
37     <body>
38         <p>Test passes if there is space between the blue and orange lines below.</p>
39         <div id="table">
40             <div id="test">
41                 <div></div>
42             </div>
43             <div id="row">
44                 <div id="cell"></div>
45             </div>
46         </div>
47     </body>
48 </html>