mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:27:45 +00:00
LibWeb: Shrink DOM::EventTarget by 80 bytes
Do this by converting two Function members into virtual functions: - legacy_pre_activation_behavior - legacy_cancelled_activation_behavior
This commit is contained in:
parent
bfe69e9d0d
commit
a97586c24a
2 changed files with 4 additions and 6 deletions
|
@ -283,7 +283,7 @@ bool EventDispatcher::dispatch(NonnullRefPtr<EventTarget> target, NonnullRefPtr<
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (activation_target && activation_target->legacy_pre_activation_behavior)
|
if (activation_target)
|
||||||
activation_target->legacy_pre_activation_behavior();
|
activation_target->legacy_pre_activation_behavior();
|
||||||
|
|
||||||
for (ssize_t i = event->path().size() - 1; i >= 0; --i) {
|
for (ssize_t i = event->path().size() - 1; i >= 0; --i) {
|
||||||
|
@ -329,8 +329,7 @@ bool EventDispatcher::dispatch(NonnullRefPtr<EventTarget> target, NonnullRefPtr<
|
||||||
// NOTE: Since activation_target is set, it will have activation behavior.
|
// NOTE: Since activation_target is set, it will have activation behavior.
|
||||||
activation_target->activation_behavior(event);
|
activation_target->activation_behavior(event);
|
||||||
} else {
|
} else {
|
||||||
if (activation_target->legacy_cancelled_activation_behavior)
|
activation_target->legacy_cancelled_activation_behavior();
|
||||||
activation_target->legacy_cancelled_activation_behavior();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AK/FlyString.h>
|
#include <AK/FlyString.h>
|
||||||
#include <AK/Function.h>
|
|
||||||
#include <AK/Noncopyable.h>
|
#include <AK/Noncopyable.h>
|
||||||
#include <AK/Vector.h>
|
#include <AK/Vector.h>
|
||||||
#include <LibJS/Forward.h>
|
#include <LibJS/Forward.h>
|
||||||
|
@ -50,8 +49,8 @@ public:
|
||||||
Function<void(const Event&)> activation_behavior;
|
Function<void(const Event&)> activation_behavior;
|
||||||
|
|
||||||
// NOTE: These only exist for checkbox and radio input elements.
|
// NOTE: These only exist for checkbox and radio input elements.
|
||||||
Function<void()> legacy_pre_activation_behavior;
|
virtual void legacy_pre_activation_behavior() { }
|
||||||
Function<void()> legacy_cancelled_activation_behavior;
|
virtual void legacy_cancelled_activation_behavior() { }
|
||||||
|
|
||||||
Bindings::CallbackType* event_handler_attribute(FlyString const& name);
|
Bindings::CallbackType* event_handler_attribute(FlyString const& name);
|
||||||
void set_event_handler_attribute(FlyString const& name, Optional<Bindings::CallbackType>);
|
void set_event_handler_attribute(FlyString const& name, Optional<Bindings::CallbackType>);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue