{"ScriptPreparationCode":"function createEl() {\r\n const el = document.createElement(\u0027div\u0027);\r\n el.style.width = 100;\r\n el.style.height = 100;\r\n el.style.position = \u0027relative\u0027;\r\n el.style.x = 10;\r\n el.style.y = 10;\r\n return el;\r\n}\r\n\r\nconst els = [... new Array(100)].map(() =\u003E createEl());\r\nwindow.els = els;\r\nels.forEach(el =\u003E document.body.appendChild(el));\r\n","TestCases":[{"Name":"control","Code":"console.log(\u0027const\u0027);","IsDeferred":false},{"Name":"gbcr one","Code":"console.log(\u0027const\u0027);\r\nwindow.els[0].getBoundingClientRect();","IsDeferred":false},{"Name":"gbcr all","Code":"console.log(\u0027const\u0027);\r\nwindow.els.forEach(el =\u003E el.getBoundingClientRect());","IsDeferred":false}]}