Skip to content

Commit

Permalink
LibJS: Select element will not trigger onchange when using element.value
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhcout committed Sep 25, 2024
1 parent fe9af6f commit 9503987
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Userland/Libraries/LibWeb/HTML/HTMLSelectElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ WebIDL::ExceptionOr<void> HTMLSelectElement::set_value(String const& value)
for (auto const& option_element : list_of_options())
option_element->set_selected(option_element->value() == value);
update_inner_text_element();
queue_input_and_change_events();
return {};
}

Expand Down

0 comments on commit 9503987

Please sign in to comment.