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