{"ScriptPreparationCode":null,"TestCases":[{"Name":"check for style first","Code":"const quantityLabels = document.querySelectorAll(\u0027.foo\u0027)\r\nlet i = quantityLabels.length\r\nwhile(i--) {\r\n \tif(quantityLabels[i].style) quantityLabels[i].removeAttribute(\u0027style\u0027)\r\n}","IsDeferred":false},{"Name":"just remove style","Code":"const quantityLabels = document.querySelectorAll(\u0027.foo\u0027)\r\nlet i = quantityLabels.length\r\nwhile(i--) {\r\n \tquantityLabels[i].removeAttribute(\u0027style\u0027)\r\n}","IsDeferred":false},{"Name":"remove style","Code":"const quantityLabels = document.querySelectorAll(\u0027.foo\u0027)\r\nlet i = quantityLabels.length\r\nwhile(i--) {\r\n \tquantityLabels[i].style = null\r\n}","IsDeferred":false}]}