{"ScriptPreparationCode":"var MAX_ITERATIONS = 100000;","TestCases":[{"Name":"createComment","Code":"const list = [];\r\nfor(let i = 0; i \u003C MAX_ITERATIONS; i\u002B\u002B) {\r\n \tlist.push(document.createComment(\u0027this is a comment\u0027));\r\n}","IsDeferred":false},{"Name":"cloneNode","Code":"const src = document.createComment(\u0027this is a comment\u0027);\r\nconst list = [];\r\nfor(let i = 0; i \u003C MAX_ITERATIONS; i\u002B\u002B) {\r\n \tlist.push(src.cloneNode());\r\n}","IsDeferred":false}]}