mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:07:36 +00:00
LibWeb: Add some missing events in EventWrapperFactory
I noticed some events we being wrapped into a generic Event while working on CustomEvent. This also adds PageTransitionEvent's constructor to the WindowObject. I'm not sure if this is all of them.
This commit is contained in:
parent
067d839615
commit
b04fafee74
3 changed files with 17 additions and 5 deletions
|
@ -201,6 +201,8 @@
|
|||
#include <LibWeb/Bindings/MouseEventPrototype.h>
|
||||
#include <LibWeb/Bindings/NodeConstructor.h>
|
||||
#include <LibWeb/Bindings/NodePrototype.h>
|
||||
#include <LibWeb/Bindings/PageTransitionEventConstructor.h>
|
||||
#include <LibWeb/Bindings/PageTransitionEventPrototype.h>
|
||||
#include <LibWeb/Bindings/PerformanceConstructor.h>
|
||||
#include <LibWeb/Bindings/PerformancePrototype.h>
|
||||
#include <LibWeb/Bindings/PerformanceTimingConstructor.h>
|
||||
|
@ -353,6 +355,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(MessageEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(MouseEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Node) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(PageTransitionEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Performance) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(PerformanceTiming) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(ProcessingInstruction) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue