blob: 76892ecf5555861e27641d96178415763a49036d [file] [log] [blame]
<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>