blob: d501c473dcdb2086a606924ad2520895b8e785f7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This test that inset borders are painted at all.</title>
<style>
div {
position: absolute;
top: 10px;
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>