1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:47:35 +00:00

LibWeb: Port fire_keyboard_event() to new FlyString

This commit is contained in:
Kenneth Myhra 2023-04-09 11:37:42 +02:00 committed by Linus Groh
parent 8f4d7f2854
commit f9d50e6eca
2 changed files with 7 additions and 7 deletions

View file

@ -40,7 +40,7 @@ private:
bool focus_next_element();
bool focus_previous_element();
bool fire_keyboard_event(DeprecatedFlyString const& event_name, HTML::BrowsingContext& browsing_context, KeyCode key, unsigned modifiers, u32 code_point);
bool fire_keyboard_event(FlyString const& event_name, HTML::BrowsingContext& browsing_context, KeyCode key, unsigned modifiers, u32 code_point);
CSSPixelPoint compute_mouse_event_client_offset(CSSPixelPoint event_page_position) const;
CSSPixelPoint compute_mouse_event_page_offset(CSSPixelPoint event_client_offset) const;