{"ScriptPreparationCode":"styleEl = document.getElementById(\u0022style-el\u0022);\r\nroot = document.documentElement;","TestCases":[{"Name":"root.style.setProperty","Code":"let i = 0;\r\n\r\nwhile (i \u003C 10000) {\r\n root.style.setProperty(\u0022color\u0022,\u0022red\u0022);\r\n root.style.setProperty(\u0022border\u0022,\u00221vmin solid red\u0022);\r\n root.style.setProperty(\u0022padding\u0022,\u00220.5vmin\u0022);\r\n root.style.setProperty(\u0022background-color\u0022,\u0022black\u0022);\r\n root.style.setProperty(\u0022height\u0022,\u00221vh\u0022);\r\n root.style.setProperty(\u0022width\u0022,\u00221vw\u0022);\r\n i\u002B\u002B;\r\n}","IsDeferred":false},{"Name":"styleEl.textContent","Code":"let i = 0;\r\n\r\nwhile (i \u003C 10000) {\r\n styleEl.textContent = \u0022color:red;border:1vmin solid red;padding:0.5vmin;background-color:black;height:1vh;width:1vw;\u0022;\r\n i\u002B\u002B;\r\n}","IsDeferred":false}]}