{"ScriptPreparationCode":null,"TestCases":[{"Name":"Using multiple calls to host objects (DOM)","Code":"jQuery(\u0027#id1\u0027)\r\n .width(600).height(400)\r\n .css(\u0027position\u0027, \u0027absolute\u0027)\r\n .css(\u0027top\u0027, \u0027200px\u0027)\r\n .css(\u0027left\u0027, \u0027200px\u0027);\r\njQuery(\u0027#id1\u0027)\r\n .width(599).height(401)\r\n .css(\u0027position\u0027, \u0027relative\u0027)\r\n .css(\u0027top\u0027, \u0027199px\u0027)\r\n .css(\u0027left\u0027, \u0027199px\u0027);\r\n","IsDeferred":false},{"Name":"Using batching - grouping multiple DOM manipulations together","Code":"jQuery(\u0027#id2\u0027).css({\r\n width: \u0027600px\u0027,\r\n height: \u0027400px\u0027,\r\n position: \u0027absolute\u0027,\r\n top: \u0027200px\u0027,\r\n left: \u0027200px\u0027}\r\n);\r\n\r\njQuery(\u0027#id2\u0027).css({\r\n width: \u0027599px\u0027,\r\n height: \u0027401px\u0027,\r\n position: \u0027relative\u0027,\r\n top: \u0027199px\u0027,\r\n left: \u0027199px\u0027}\r\n);","IsDeferred":false},{"Name":"Using multiple calls to host objects (DOM) v2","Code":"jQuery(\u0027#id1\u0027)\r\n .width(600).height(400);\r\n jQuery(\u0027#id1\u0027).css(\u0027position\u0027, \u0027absolute\u0027);\r\n jQuery(\u0027#id1\u0027).css(\u0027top\u0027, \u0027200px\u0027);\r\n jQuery(\u0027#id1\u0027).css(\u0027left\u0027, \u0027200px\u0027);\r\njQuery(\u0027#id1\u0027)\r\n .width(599).height(401);\r\n jQuery(\u0027#id1\u0027).css(\u0027position\u0027, \u0027relative\u0027);\r\n jQuery(\u0027#id1\u0027).css(\u0027top\u0027, \u0027199px\u0027);\r\n jQuery(\u0027#id1\u0027).css(\u0027left\u0027, \u0027199px\u0027);\r\n","IsDeferred":false}],"UseTinyBench":false}