Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/search/search-vertical-alignment.html

Issue 2005093002: Remove non-standard 'results' attribute of INPUT element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698