mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Dispatch a "change" event when <input> checked state changes
This commit is contained in:
parent
f2431adf47
commit
71092226bd
Notes:
sideshowbarker
2024-07-19 02:45:49 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/71092226bd0
1 changed files with 2 additions and 0 deletions
|
@ -109,6 +109,8 @@ void HTMLInputElement::set_checked(bool checked)
|
|||
m_checked = checked;
|
||||
if (layout_node())
|
||||
layout_node()->set_needs_display();
|
||||
|
||||
dispatch_event(DOM::Event::create("change"));
|
||||
}
|
||||
|
||||
bool HTMLInputElement::enabled() const
|
||||
|
|
Loading…
Reference in a new issue