blob: 0a0e0464234bf0b7cf16ff8761e6ae71b76afb69 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This test that dashed borders are painted at all.</title>
<style>
div {
position: absolute;
top: 0px;
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 / 2 + "px";
document.body.appendChild(e);
borderWidth += 1;
x += (w + 2 * borderWidth);
}
</script>
</body>
</html>