Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
mstensho (USE GERRIT)
2015/08/26 18:45:56
Poor file name has no extension. :(
| |
| 2 <style> | |
| 3 input, button { | |
| 4 display: table-cell; | |
| 5 width: 50px; | |
| 6 height: 100px; | |
| 7 background: blue; | |
| 8 border: none; | |
| 9 padding: 0; | |
| 10 vertical-align: bottom; | |
| 11 } | |
| 12 </style> | |
| 13 <p>crbug.com/515771: Form elements with a table cell display should not allow wh itespace between them. </p> | |
| 14 <p>There should be a blue square below.</p> | |
| 15 <div style="display:table;"> | |
| 16 <div></div> | |
| 17 <input> | |
| 18 <button></button> | |
| 19 </div> | |
| OLD | NEW |