3 <title>No-op requestAnimationFrame loop
</title>
7 div { outline: solid thin cornflowerblue; }
11 This page has many compositor layers and a no-op requestAnimationFrame loop.
15 for (var i
= 0; i
< 10000; ++i
) {
16 var div
= document
.body
.appendChild(document
.createElement("div"));
17 div
.style
.transform
= "translateZ(0)";
18 div
.style
.width
= "10px";
19 div
.style
.height
= "10px";
23 requestAnimationFrame(noOp
);