blob: 54f72d08557084d5948b77b156f9d723b2a6509d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This test that dashed borders are painted at all.</title>
<style>
div {
position: absolute;
top: 0px;
width: 1px;
background-color: red;
}
</style>
<head>
<body>
<script>
var borderWidth = 1;
var x = 0;
for (var i = 1; i < 10; ++i) {
w = 10 * i;
var e = document.createElement("div");
e.style.left = x + "px";
e.style.width = w + "px";
e.style.height = borderWidth + "px";
document.body.appendChild(e);
borderWidth += 1;
x += (w + 2 * borderWidth);
}
</script>
</body>
</html>