border-conflict-style-101

border conflict resolution - border-style: hidden applied to table-row

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-row</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   tr
21   {
22   border-color: red;
23   border-style: hidden;
24   }
25 
26   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    <tbody>
43     <tr>
44      <td></td>
45     </tr>
46    </tbody>
47 
48   </table>
49 
50  </body>
51 </html>