mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibWeb: Dispatch a "change" event when <input> checked state changes
This commit is contained in:
@@ -109,6 +109,8 @@ void HTMLInputElement::set_checked(bool checked)
|
|||||||
m_checked = checked;
|
m_checked = checked;
|
||||||
if (layout_node())
|
if (layout_node())
|
||||||
layout_node()->set_needs_display();
|
layout_node()->set_needs_display();
|
||||||
|
|
||||||
|
dispatch_event(DOM::Event::create("change"));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HTMLInputElement::enabled() const
|
bool HTMLInputElement::enabled() const
|
||||||
|
|||||||
Reference in New Issue
Block a user