Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
|
Julien - ping for review
2015/07/16 14:58:12
Cough, cough, <!DOCTYPE>, cough, cough (not repeat
| |
| 2 .scrollingElement | |
| 3 { | |
| 4 width: 100px; | |
| 5 height: 100px; | |
| 6 background-color: green; | |
| 7 overflow: scroll; | |
| 8 } | |
| 9 table | |
| 10 { | |
| 11 margin-bottom: 35px; | |
| 12 } | |
| 13 </style> | |
| 14 <table class="scrollingElement" cellspacing=0> | |
| 15 <tbody> | |
| 16 <tr><td> text text text text</td></tr> | |
|
Julien - ping for review
2015/07/16 14:58:12
Is the content needed here and the following table
| |
| 17 </tbody> | |
| 18 </table> | |
| 19 <table cellspacing=0> | |
| 20 <tbody class="scrollingElement"> | |
| 21 <tr><td> text text text text</td></tr> | |
| 22 </tbody> | |
| 23 </table> | |
| 24 <table cellspacing=0> | |
| 25 <tbody> | |
| 26 <tr class="scrollingElement"><td>text text text text</td></tr> | |
| 27 </tbody> | |
| 28 </table> | |
| 29 <p> crbug.com/368699: Tables, table rows and table sections don't have scrollbar s when they have overflow:scroll. </p> | |
| OLD | NEW |