{"ScriptPreparationCode":"function createExample() {\r\n var el = document.createElement(\u0027div\u0027);\r\n el.className = \u0027class-1 class-2 class-3\u0027;\r\n el.id = \u0027example\u0027;\r\n el.textContent = \u0027Test\u0027;\r\n return el;\r\n}","TestCases":[{"Name":"C1","Code":"var scope = {\r\n ex: createExample()\r\n}\r\nvar i = 10000;\r\nwhile (i--) {\r\n var e = scope.ex.cloneNode(true);\r\n}","IsDeferred":false},{"Name":"C2","Code":"var scope = {\r\n ex: createExample()\r\n}\r\nscope.Clone = Node.prototype.cloneNode.bind(scope.ex);\r\nvar i = 10000;\r\nwhile (i--) {\r\n var e = scope.Clone(true);\r\n}","IsDeferred":false}]}