From f647a456e0c140855e6528bd4470bf06abe51b9d Mon Sep 17 00:00:00 2001 From: Tom Brunet Date: Mon, 4 Nov 2024 12:19:18 -0600 Subject: [PATCH] Missing space --- accessibility-checker-engine/src/v2/dom/DOMWalker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accessibility-checker-engine/src/v2/dom/DOMWalker.ts b/accessibility-checker-engine/src/v2/dom/DOMWalker.ts index 1af5e0e08..92222e070 100644 --- a/accessibility-checker-engine/src/v2/dom/DOMWalker.ts +++ b/accessibility-checker-engine/src/v2/dom/DOMWalker.ts @@ -119,7 +119,7 @@ export class DOMWalker { (this.node as any).slotOwner = slotOwner; (this.node as any).slotIndex = 0; } else if ((this.node.nodeType === 1 /* Node.ELEMENT_NODE */ || this.node.nodeType === 11 /* Node.DOCUMENT_FRAGMENT_NODE */) && this.node.firstChild) { - this.node = this.node.firstChild; + this.node = this.node.firstChild; } else { this.bEndTag = true; }