mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-02 08:22:55 +00:00
LibWeb: Remove ancient HTML_DEBUG debug logging
This commit is contained in:
parent
6a569bbdd7
commit
10b534849d
Notes:
sideshowbarker
2024-07-19 01:20:38 +09:00
Author: https://github.com/awesomekling
Commit: 10b534849d
6 changed files with 1 additions and 29 deletions
|
@ -250,12 +250,8 @@ bool EventHandler::handle_mousemove(const Gfx::IntPoint& position, unsigned butt
|
|||
if (node->is_text())
|
||||
is_hovering_text = true;
|
||||
hovered_link_element = node->enclosing_link_element();
|
||||
if (hovered_link_element) {
|
||||
#ifdef HTML_DEBUG
|
||||
dbg() << "InProcessWebView: hovering over a link to " << hovered_link_element->href();
|
||||
#endif
|
||||
if (hovered_link_element)
|
||||
is_hovering_link = true;
|
||||
}
|
||||
auto offset = compute_mouse_event_offset(position, *result.layout_node);
|
||||
node->dispatch_event(UIEvents::MouseEvent::create("mousemove", offset.x(), offset.y()));
|
||||
if (!layout_root())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue