Bug 1942006 - Upstream a variety of Servo-specific code from Servo's downstream fork...
[gecko.git] / layout / reftests / forms / input / range / moz-range-progress-1-ref.html
blob73af6dcb099864072cb680c821adf823719277c0
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test ::-moz-range-progress</title>
5 <style>
7 div {
8 margin: 0;
9 padding: 0;
12 .range {
13 display: inline-block;
14 position: relative;
15 width: 200px;
16 height: 20px;
17 background-color: blue;
20 .range-progress {
21 display: inline-block;
22 position: absolute;
23 top: 5px;
24 width: 50px;
25 height: 10px;
26 background-color: lime;
29 </style>
30 </head>
31 <body>
32 <div class="range">
33 <div class="range-progress"></div>
34 </div>
35 </body>
36 </html>