4 <title>This tests that a non simple render backing layer with fractional CSS pixel size paints the background with no cruft.
</title>
10 border:
0.5px solid red;
15 <p id=
"container"></p>
17 var container
= document
.getElementById("container");
20 for (i
= 0; i
< 30; ++i
) {
22 for (j
= 0; j
< 40; ++j
) {
23 var e
= document
.createElement("div");
24 e
.style
.top
= ((w
+ 2) * i
+ j
* adjustment
) + "px";
25 e
.style
.left
= ((w
+ 2) * j
+ i
* adjustment
) + "px";
26 e
.style
.width
= w
+ "px";
27 e
.style
.height
= h
+ "px";
28 container
.appendChild(e
);