1
0
forked from rosa/hakurei

cmd/pkgserver: provide role descriptions for test nodes in web UI

This commit is contained in:
Kat
2026-03-23 00:47:42 +11:00
parent 09379cef7d
commit ff0cff0488

View File

@@ -306,8 +306,10 @@ export class DOMReporter implements Reporter {
if (!child) {
child = document.createElement("details");
child.className = "test-node";
child.ariaRoleDescription = "test";
const summary = document.createElement("summary");
summary.appendChild(document.createTextNode(node));
summary.ariaRoleDescription = "test name";
child.appendChild(summary);
parent.appendChild(child);
}