| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 input { -webkit-appearance: none; } | 2 input { -webkit-appearance: none; } |
| 3 </style> | 3 </style> |
| 4 <p> | 4 <p> |
| 5 Test that search field text is vertically centered if the search field is | 5 Test that search field text is vertically centered if the search field is |
| 6 taller than the text. In each of the following pairs of a search field and | 6 taller than the text. In each of the following pairs of a search field and |
| 7 a text field, the vertical position of the text should be the | 7 a text field, the vertical position of the text should be the |
| 8 same in both fields. | 8 same in both fields. |
| 9 </p> | 9 </p> |
| 10 <p> | 10 <p> |
| 11 <input type="search" value="Text" results style="height: 45px;"> | 11 <input type="search" value="Text" style="height: 45px;"> |
| 12 <input type="text" value="Text" style="height: 45px;"> | 12 <input type="text" value="Text" style="height: 45px;"> |
| 13 </p> | 13 </p> |
| 14 <p> | 14 <p> |
| 15 <input type="search" value="Text" results style="height: 16px;"> | 15 <input type="search" value="Text" style="height: 16px;"> |
| 16 <input type="text" value="Text" style="height: 16px;"> | 16 <input type="text" value="Text" style="height: 16px;"> |
| 17 </p> | 17 </p> |
| 18 <p> | 18 <p> |
| 19 <input type="search" value="Text" results style="height: 12px;"> | 19 <input type="search" value="Text" style="height: 12px;"> |
| 20 <input type="text" value="Text" style="height: 12px;"> | 20 <input type="text" value="Text" style="height: 12px;"> |
| 21 </p> | 21 </p> |
| OLD | NEW |