{"ScriptPreparationCode":"/*your preparation JavaScript code goes here\r\nTo execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/\r\nasync function globalMeasureThatScriptPrepareFunction() {\r\n // This function is optional, feel free to remove it.\r\n // await someThing();\r\n}","TestCases":[{"Name":"DOMParser","Code":"const html = \u0022\u003Cp\u003E\u003C/p\u003E\u0022\r\nconst parser = new DOMParser();\r\nconst virtualDom = parser.parseFromString(html, \u0027text/html\u0027);\r\nreturn virtualDom.body.innerText === \u0027\u0027","IsDeferred":false},{"Name":"createElement","Code":"const html = \u0022\u003Cp\u003E\u003C/p\u003E\u0022\r\nconst el = document.createElement(\u0027div\u0027);\r\nel.innerHTML = html;\r\nreturn el.innerText.trim() === \u0027\u0027;","IsDeferred":false}]}