Skip to content

Commit

Permalink
Missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
tombrunet committed Nov 4, 2024
1 parent ef6f0dc commit f647a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accessibility-checker-engine/src/v2/dom/DOMWalker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f647a45

Please sign in to comment.