{"ScriptPreparationCode":" var elem = document.getElementById(\u0027element\u0027);\r\nfunction getRandomInt(max) {\r\n return Math.floor(Math.random() * Math.floor(max));\r\n}","TestCases":[{"Name":"style by property","Code":"\telem.style.width = getRandomInt(500) \u002B \u0027px\u0027;\r\n elem.style.height = \u002750px\u0027;\r\n elem.style.top = \u002740px\u0027;\r\n elem.style.left = \u002790px\u0027;\r\ni\u002B\u002B;","IsDeferred":false},{"Name":"style by name","Code":"\telem.style[\u0027width\u0027] = getRandomInt(500) \u002B \u0027px\u0027;\r\n elem.style[\u0027height\u0027] = \u002750px\u0027;\r\n elem.style[\u0027top\u0027] = \u002740px\u0027;\r\n elem.style[\u0027left\u0027] = \u002790px\u0027;","IsDeferred":false},{"Name":"setAttribute","Code":"elem.setAttribute(\u0022style\u0022,\u0022width:\u0022 \u002B getRandomInt(500) \u002B \u0022px;height:50px;top:40px;left:90px;\u0022);","IsDeferred":false}]}