Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../resources/js-test.js"></script> | |
| 3 <table width='200px'> | |
| 4 <tr> | |
| 5 <td> | |
| 6 <marquee>The quick brown fox jumps over the lazy dog.</marquee> | |
|
mstensho (USE GERRIT)
2015/06/23 09:33:30
Can you add some more text? This is barely wider t
changseok
2015/06/24 06:15:58
Done.
| |
| 7 </td> | |
| 8 </tr> | |
| 9 </table> | |
| 10 <script> | |
| 11 description("This tests if marquee contributes to table width. It should not."); | |
| 12 shouldBeEqualToNumber("document.querySelector('td').getBoundingClientRect().widt h", 196); | |
|
mstensho (USE GERRIT)
2015/06/23 09:33:30
Setting cellpadding="0" cellspacing="0" on the tab
changseok
2015/06/24 06:15:58
O.K. The table is replaced with the two divs
| |
| 13 </script> | |
| OLD | NEW |