Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>crbug.com/99124 - If a cell is taller than the page then don't attempt to pre vent it straddling pages.</p> | |
| 3 <div style="-webkit-columns:3; column-fill:auto; line-height:20px; height:90px; background:yellow;"> | |
| 4 <br> | |
| 5 <table> | |
| 6 <tr> | |
| 7 <td data-total-y=2> | |
|
mstensho (USE GERRIT)
2016/03/17 14:04:03
It's going to be hard to get this one to fail, sin
| |
| 8 First column<br> | |
| 9 First column<br> | |
| 10 First column<br> | |
| 11 Second column<br> | |
| 12 Second column<br> | |
| 13 Second column<br> | |
| 14 Second column<br> | |
| 15 Third column<br> | |
| 16 </td> | |
| 17 </tr> | |
| 18 </table> | |
| 19 </div> | |
| 20 <div id="console"></div> | |
| 21 <script src="../../resources/check-layout.js"></script> | |
| 22 <script> | |
| 23 checkLayout("td", document.getElementById("console")); | |
| 24 </script> | |
| 25 | |
| OLD | NEW |