Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 input,button{ | |
| 4 display: table-cell; | |
| 5 height:24px; | |
| 6 } | |
| 7 input{ | |
| 8 border-width:1px 0 1px 1px; | |
| 9 padding: 0 5px; | |
| 10 width:196px; | |
| 11 } | |
| 12 button{ | |
| 13 width:27px; | |
| 14 } | |
| 15 .container{ | |
| 16 width:236px; | |
| 17 } | |
| 18 .inner{ | |
| 19 display: table; | |
| 20 } | |
| 21 </style> | |
| 22 <div class="container"> | |
| 23 <div class="inner" data-expected-height=31> | |
| 24 <input type="text"> | |
| 25 <button></button> | |
| 26 </div> | |
| 27 </div> | |
| 28 <p>crbug.com/515771: Form elements with a table cell display should not allow wh itespace between them. </p> | |
| OLD | NEW |