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

Side by Side Diff: LayoutTests/fast/forms/searchfield-heights.html

Issue 15838011: Fix where the clear button will be drawn when adding padding to the input element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 .small { 4 .small {
5 height: 6px; 5 height: 6px;
6 font-size: 6px; 6 font-size: 6px;
7 } 7 }
8 8
9 .med { 9 .med {
10 height: 40px; 10 height: 40px;
11 font-size: 15px; 11 font-size: 15px;
12 } 12 }
13 13
14 .large { 14 .large {
15 height: 200px; 15 height: 200px;
16 font-size: 27px; 16 font-size: 27px;
17 } 17 }
18 18
19 </style> 19 </style>
20 </head> 20 </head>
21 <body> 21 <body>
22 This tests that aqua-style search fields do not honor height.<br> 22 This tests that aqua-style search fields do not honor height.<br>
23 <input type="search" class="small" value="mini"></input> 23 <input type="search" results=1 class="small" value="mini"></input>
24 <input type="search" class="med" value="small"></input> 24 <input type="search" results=1 class="med" value="small"></input>
25 <input type="search" class="large" value="regular"></input> 25 <input type="search" results=1 class="large" value="regular"></input>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698