4 <title>This tests that simple compositing container layer takes fractional device pixel into account when painting.
5 Simple and non-simple codepath should paint on the same positions.
</title>
17 <p id=
"container"></p>
19 var container
= document
.getElementById("container");
21 for (i
= 0; i
< 10; ++i
) {
23 for (j
= 0; j
< 10; ++j
) {
24 var e
= document
.createElement("div");
25 e
.style
.top
= (11 * i
+ j
* adjustment
) + "px";
26 e
.style
.left
= (11 * j
+ i
* adjustment
) + "px";
27 container
.appendChild(e
);