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