Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <p>This test ensures padding inside input and textarea elements match.</p> | 4 <p>This test ensures padding inside input and textarea elements match.</p> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 textarea { | 6 textarea { |
| 7 display: block; | 7 display: block; |
| 8 font-family: arial,sans-serif; | 8 font-family: arial,sans-serif; |
| 9 font-size: 0px; | |
|
Julien - ping for review
2016/01/14 16:46:18
Why do we need those changes?
tkent
2016/01/15 02:09:49
This test doesn't work with the LayoutTextControlS
| |
| 9 border: none; | 10 border: none; |
| 10 padding: 0 0 0 10px; | 11 padding: 0 0 0 10px; |
| 11 margin: 0; | 12 margin: 0; |
| 12 resize: none; | 13 resize: none; |
| 13 width: 20px; | 14 width: 20px; |
| 14 height: 10px; | 15 height: 10px; |
| 15 overflow: hidden; | 16 overflow: hidden; |
| 16 } | 17 } |
| 17 </style> | 18 </style> |
| 18 <textarea>|</textarea> | 19 <textarea>|</textarea> |
| 19 </body> | 20 </body> |
| 20 </html> | 21 </html> |
| OLD | NEW |