(html, cls = "")
| 177 | panel.querySelector("#start").addEventListener("click", runAll); |
| 178 | |
| 179 | function logLine(html, cls = "") { |
| 180 | const line = h("div", { style: { padding: "6px 0", borderBottom: "1px dashed #2a2a2a" } }); |
| 181 | line.innerHTML = html; |
| 182 | if (cls) line.className = cls; |
| 183 | $log.prepend(line); |
| 184 | } |
| 185 | |
| 186 | function setCounts(p, f, s) { |
| 187 | $counts.textContent = `✅ ${p} ❌ ${f} ⏳ ${s}`; |