mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Implement dispatching of "input" event
This commit is contained in:
parent
d88e6bee5d
commit
0de61b0f65
Notes:
github-actions[bot]
2024-10-22 12:46:02 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 0de61b0f65
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1903
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/trflynn89 ✅
11 changed files with 139 additions and 3 deletions
|
@ -47,6 +47,7 @@
|
|||
#include <LibWeb/SVG/AttributeNames.h>
|
||||
#include <LibWeb/SVG/TagNames.h>
|
||||
#include <LibWeb/UIEvents/EventNames.h>
|
||||
#include <LibWeb/UIEvents/InputTypes.h>
|
||||
#include <LibWeb/WebGL/EventNames.h>
|
||||
#include <LibWeb/WebIDL/AbstractOperations.h>
|
||||
#include <LibWeb/XHR/EventNames.h>
|
||||
|
@ -105,6 +106,7 @@ ErrorOr<void> initialize_main_thread_vm(HTML::EventLoop::Type type)
|
|||
SVG::AttributeNames::initialize_strings();
|
||||
SVG::TagNames::initialize_strings();
|
||||
UIEvents::EventNames::initialize_strings();
|
||||
UIEvents::InputTypes::initialize_strings();
|
||||
WebGL::EventNames::initialize_strings();
|
||||
XHR::EventNames::initialize_strings();
|
||||
XLink::AttributeNames::initialize_strings();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue