Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / searchfield-heights.html
blob85daeeedf386d0b951f019c3f9cb6ec86e1fba37
1 <html>
2 <head>
3 <style>
4 .small {
5 height: 6px;
6 font-size: 6px;
9 .med {
10 height: 40px;
11 font-size: 15px;
14 .large {
15 height: 200px;
16 font-size: 27px;
19 </style>
20 </head>
21 <body>
22 This tests that aqua-style search fields do not honor height.<br>
23 <input type="search" results=1 class="small" value="mini"></input>
24 <input type="search" results=1 class="med" value="small"></input>
25 <input type="search" results=1 class="large" value="regular"></input>
26 </body>
27 </html>