4 <title>This tests that inline text selection can paint to subpixel position.</title>
11 background: rgba(255, 0, 0, 0.9);
16 <p id="container"></p>
18 var container = document.getElementById("container");
20 for (i = 0; i < 10; ++i) {
22 for (j = 0; j < 10; ++j) {
23 var e = document.createElement("div");
24 e.style.top = (30 * i + j * adjustment) + "px";
25 e.style.left = (30 * j + i * adjustment) + "px";
27 container.appendChild(e);