blob: 76892ecf5555861e27641d96178415763a49036d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<script>
function log(msg)
{
document.getElementById("console").appendChild(document.createTextNode(msg + "\n"));
}
</script>
</head>
<body>
This tests that the slider control considers padding.
<br>
<div style="background-color: lightblue; ">
<input type="range" id="rn" style="padding: 10px; width: 100px;" value=0></input>
</div>
<pre id="console"></pre>
</body>
</html>
|