Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>There should be a yellow/hotpink square 2x2 chessboard below.</p> | |
| 3 <div style="columns:3; column-gap:0; width:60px; line-height:20px; orphans:1; wi dows:1;"> | |
| 4 <div style="background:yellow;"><br></div> | |
| 5 <table cellspacing="0" cellpadding="0" style="width:40px;"> | |
| 6 <!-- The thead should be repeated at the top of each column | |
| 7 that the table breaks into. --> | |
| 8 <thead style="break-inside:avoid;"> | |
| 9 <tr> | |
| 10 <td style="background:hotpink;"><br></td> | |
| 11 </tr> | |
| 12 </thead> | |
| 13 <tbody> | |
| 14 <tr> | |
| 15 <td><br></td> | |
| 16 </tr> | |
| 17 <tr> | |
| 18 <td style="background:yellow;"><br></td> | |
| 19 </tr> | |
| 20 <tr> | |
| 21 <td><br></td> | |
| 22 </tr> | |
| 23 </tbody> | |
| 24 </table> | |
| 25 <br> | |
| 26 <br> | |
| 27 <br> | |
| 28 </div> | |
| OLD | NEW |