Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script> | |
| 5 if (window.testRunner) | |
| 6 testRunner.dumpAsText(); | |
| 7 | |
| 8 function removeSpan() { | |
| 9 document.getElementById("colGroup").removeAttribute("span"); | |
| 10 } | |
| 11 </script> | |
| 12 </head> | |
| 13 <body onload="removeSpan()"> | |
| 14 <p>This test passes if it does not crash.</p> | |
|
Julien - ping for review
2014/03/13 18:29:24
Let's add a description to this test:
<p>This tes
| |
| 15 <table> | |
| 16 <colgroup id="colGroup" span="10000000000"> | |
| 17 <th></th> | |
| 18 </colgroup> | |
| 19 </table> | |
| 20 <table> | |
| 21 <colgroup span="0"> | |
| 22 <th></th> | |
| 23 </colgroup> | |
| 24 </table> | |
| 25 <table> | |
| 26 <colgroup span="10000000000"> | |
| 27 <th></th> | |
| 28 </colgroup> | |
| 29 </table> | |
| 30 <table> | |
| 31 <colgroup span="-10000000000"> | |
| 32 <th></th> | |
| 33 </colgroup> | |
| 34 </table> | |
|
Julien - ping for review
2014/03/13 18:29:24
Missing from the testing:
- colgroup span="cheese
| |
| 35 </body> | |
| 36 </html> | |
| OLD | NEW |