blob: d702d021c5c58d9ad1ff070952604a3be8f26c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!-- https://bugzilla.mozilla.org/show_bug.cgi?id=1524573 -->
<html><head>
<meta charset="utf-8">
<title>Testcase for bug 1583660</title>
<style>
input::-moz-range-thumb {
visibility:hidden;
}
input::-moz-range-track {
background: transparent;
}
</style>
</head>
<body>
<input type=range>
<input type=range orient=vertical>
</body>
</html>
|