border-conflict-style-106

border conflict resolution - border-style: hidden applied to table-header-group

WeasyPrint

This browser

Assertion
A table element with the 'border-style' value of 'hidden' should suppress all borders for such element.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3 
 4  <head>
 5 
 6   <title>CSS Test: border conflict resolution - border-style: hidden applied to table-header-group</title>
 7 
 8   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
 9   <link rel="author" title="Marc Pacheco" href="http://marc.baffl.co.uk/contact.php">
10   <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution">
11   <meta content="" name="flags">
12   <meta content="A table element with the 'border-style' value of 'hidden' should suppress all borders for such element." name="assert">
13 
14   <style type="text/css">
15   table
16   {
17   border-collapse: collapse;
18   }
19 
20   thead
21   {
22   border-color: red;
23   border-style: hidden;
24   }
25 
26   thead td
27   {
28   border: red solid;
29   height: 200px;
30   width: 200px;
31   }
32   </style>
33 
34  </head>
35 
36  <body>
37 
38   <p>There should be <strong>no red</strong>, not even thin red lines.</p>
39 
40   <table>
41 
42    <thead>
43     <tr>
44      <td></td>
45     </tr>
46    </thead>
47 
48    <tbody>
49     <tr>
50      <td></td>
51     </tr>
52    </tbody>
53 
54   </table>
55 
56  </body>
57 </html>