We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8183b commit 609a89cCopy full SHA for 609a89c
Userland/Libraries/LibWeb/DOM/TreeWalker.cpp
@@ -187,7 +187,7 @@ JS::ThrowCompletionOr<JS::GCPtr<Node>> TreeWalker::next_node()
187
node = *node->first_child();
188
189
// 2. Set result to the result of filtering node within this.
190
- auto result = TRY(filter(*node));
+ result = TRY(filter(*node));
191
192
// 3. If result is FILTER_ACCEPT, then set this’s current to node and return node.
193
if (result == NodeFilter::FILTER_ACCEPT) {
0 commit comments