Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script> | |
| 3 if (window.testRunner) | |
| 4 testRunner.dumpAsText(); | |
| 5 </script> | |
| 6 <style> | |
| 7 td { font: 20px/1 Ahem } | |
| 8 .row-height { height : 48515% } | |
| 9 </style> | |
| 10 <body> | |
| 11 <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issu es/detail?id=408066">408066</a>. | |
| 12 <br/>Page is crashing on assression when table row span cell's percent height is too large.</h3> | |
|
mstensho (USE GERRIT)
2016/01/20 13:00:59
*assertion*
And I think you can just remove the f
dgrogan
2016/01/21 01:38:13
I see you're consistent with this preference :)
J
a.suchit2
2016/01/21 07:08:40
So right now, I will leave as it is.
| |
| 13 <h4>For this test to PASS, it should not crash.</h4> | |
| 14 <table> | |
| 15 <tr class="row-height"> | |
| 16 <td height="876543210" rowspan="2">This row span cell height is too large.</td> | |
| 17 </tr> | |
| 18 <tr class="row-height"> | |
| 19 <td></td> | |
| 20 </tr> | |
| 21 </table> | |
| 22 </body> | |
| OLD | NEW |