LibWeb: Implement activation behavior for <input type=checkbox>

We now fire the "input" and "change" events as specified.
This commit is contained in:
Andreas Kling 2022-02-15 21:58:13 +01:00
parent 8a89a7bd95
commit 61115dc638
Notes: sideshowbarker 2024-07-17 18:44:08 +09:00

View file

@ -92,7 +92,24 @@ void HTMLInputElement::run_activation_behavior()
// https://html.spec.whatwg.org/multipage/input.html#input-activation-behavior
void HTMLInputElement::run_input_activation_behavior()
{
dispatch_event(DOM::Event::create(EventNames::change));
if (type().equals_ignoring_case("checkbox")) {
// 1. If the element is not connected, then return.
if (!is_connected())
return;
// 2. Fire an event named input at the element with the bubbles and composed attributes initialized to true.
auto input_event = DOM::Event::create(HTML::EventNames::input);
input_event->set_bubbles(true);
input_event->set_composed(true);
dispatch_event(move(input_event));
// 3. Fire an event named change at the element with the bubbles attribute initialized to true.
auto change_event = DOM::Event::create(HTML::EventNames::change);
change_event->set_bubbles(true);
dispatch_event(move(change_event));
} else {
dispatch_event(DOM::Event::create(EventNames::change));
}
}
bool HTMLInputElement::enabled() const