| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>CSS Test: 'groups' in the 'rules' attribute</title> | 4 <title>CSS Test: 'groups' in the 'rules' attribute</title> |
| 5 <meta name="assert" content="The first table is a box with 2 horizontal
lines."> | 5 <meta name="assert" content="The first table is a box with 2 horizontal
lines."> |
| 6 <meta name="assert" content="The second table is a box with 2 vertical l
ines."> | 6 <meta name="assert" content="The second table is a box with 2 vertical l
ines."> |
| 7 <meta name="assert" content="The third table has 2 vertical lines and 2
horizontal lines - like a tic-tac toe board."> | 7 <meta name="assert" content="The third table has 2 vertical lines and 2
horizontal lines - like a tic-tac toe board."> |
| 8 <style type="text/css"> | 8 <style type="text/css"> |
| 9 td | 9 td |
| 10 { | 10 { |
| 11 height: 20px; | 11 height: 20px; |
| 12 width: 20px; | 12 width: 20px; |
| 13 } | 13 } |
| 14 </style> | 14 </style> |
| 15 <script> | 15 <script> |
| 16 if (window.testRunner) | 16 if (window.testRunner) |
| 17 testRunner.dumpAsText(true); | 17 testRunner.dumpAsTextWithPixelResults(); |
| 18 </script> | 18 </script> |
| 19 </head> | 19 </head> |
| 20 <body> | 20 <body> |
| 21 <table rules="groups" frame="box"> | 21 <table rules="groups" frame="box"> |
| 22 <theader> | 22 <theader> |
| 23 <td></td> | 23 <td></td> |
| 24 <td></td> | 24 <td></td> |
| 25 <td></td> | 25 <td></td> |
| 26 </theader> | 26 </theader> |
| 27 <tbody> | 27 <tbody> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 </tbody> | 75 </tbody> |
| 76 <tbody> | 76 <tbody> |
| 77 <td></td> | 77 <td></td> |
| 78 <td></td> | 78 <td></td> |
| 79 <td></td> | 79 <td></td> |
| 80 </tbody> | 80 </tbody> |
| 81 </table> | 81 </table> |
| 82 | 82 |
| 83 </body> | 83 </body> |
| 84 </html> | 84 </html> |
| OLD | NEW |