LibWeb: Stop dumping selectors in ParentNode::query_selector{,_all}()

This isn't particularly useful (anymore), especially without any context
about _why_ this output suddenly appears in the debug console.
This commit is contained in:
Linus Groh 2021-09-13 21:15:24 +01:00
parent f28b2a875a
commit 8cd4a889fe
Notes: sideshowbarker 2024-07-18 04:00:19 +09:00

View file

@ -19,9 +19,6 @@ ExceptionOr<RefPtr<Element>> ParentNode::query_selector(StringView selector_text
auto selectors = maybe_selectors.value();
for (auto& selector : selectors)
dump_selector(selector);
RefPtr<Element> result;
for_each_in_inclusive_subtree_of_type<Element>([&](auto& element) {
for (auto& selector : selectors) {
@ -44,9 +41,6 @@ ExceptionOr<NonnullRefPtrVector<Element>> ParentNode::query_selector_all(StringV
auto selectors = maybe_selectors.value();
for (auto& selector : selectors)
dump_selector(selector);
NonnullRefPtrVector<Element> elements;
for_each_in_inclusive_subtree_of_type<Element>([&](auto& element) {
for (auto& selector : selectors) {