Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / submit / submit-appearance-basic.html
blob3f2a3c004b77331de646d7eaa8331942f465cdf4
1 <!DOCTYPE html>
2 <body>
3 <style>
4 input {
5 margin: 4px;
7 </style>
9 <!-- no style for reference -->
10 <input type="submit" value="foo"> <br>
12 <!-- border -->
13 <input type="submit" value="foo" style="border: 3px solid lime;">
14 <input type="submit" value="foo" style="border-radius: 6px;"> <br>
16 <!-- background -->
17 <input type="submit" value="foo" style="background: linear-gradient(to bottom, #dea 0%,#9c7 44%,#494 100%);"> <br>
19 <!-- shadow -->
20 <input type="submit" value="foo" style="box-shadow: 4px 4px 10px rgba(255,0,0,0.5), inset 4px 4px 4px rgba(0,255,0,0.5);"> <br>
22 <!-- font-size -->
23 <input type="submit" value="foo" style="font-size: 16px;">
24 <input type="submit" value="foo" style="font-size: 20px;">
25 <input type="submit" value="foo" style="font-size: 24px;"> <br>
27 <!-- zoom -->
28 <input type="submit" value="foo" style="zoom: 1.5;">
29 <input type="submit" value="foo" style="zoom: 2;"> <br>
30 </body>