mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 03:09:08 +00:00
LibWeb/HTML: Select html input elements with selectable text
only select input elements that select applies to and has a selectable text.
This commit is contained in:
committed by
Andreas Kling
parent
d77843e2f0
commit
6fe43e9f73
@@ -232,8 +232,7 @@ WebIDL::ExceptionOr<void> FormAssociatedTextControlElement::select()
|
||||
auto& html_element = form_associated_element_to_html_element();
|
||||
if (is<HTMLInputElement>(html_element)) {
|
||||
auto& input_element = static_cast<HTMLInputElement&>(html_element);
|
||||
// FIXME: implement "or the corresponding control has no selectable text"
|
||||
if (!input_element.select_applies())
|
||||
if (!input_element.select_applies() || !input_element.has_selectable_text())
|
||||
return {};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user