haikuwebkit/LayoutTests/fast/forms/range/slider-padding.html

17 lines
514 B
HTML

<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>