diff options
author | Linus Groh <mail@linusgroh.de> | 2021-09-13 21:15:24 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-13 21:16:33 +0100 |
commit | 8cd4a889fe9e5bc4ec878ef6fe35754c6802aeda (patch) | |
tree | 8d7cc3f8de20a5e178207a35b9482ba2457cf291 /Userland/Libraries/LibWeb/DOM | |
parent | f28b2a875a0fa6b7ee88cac1858955e64842d8a8 (diff) | |
download | serenity-8cd4a889fe9e5bc4ec878ef6fe35754c6802aeda.zip |
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.
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/ParentNode.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/ParentNode.cpp b/Userland/Libraries/LibWeb/DOM/ParentNode.cpp index a55f7631e8..f2136a1662 100644 --- a/Userland/Libraries/LibWeb/DOM/ParentNode.cpp +++ b/Userland/Libraries/LibWeb/DOM/ParentNode.cpp @@ -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) { |