1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-29 09:52:12 +00:00

LibWeb: Stub HTMLInputElement.setSelectionRange

Required by Twitter to move the input caret of the 2FA <input> element
to the start. However, we don't currently handle individual <input>
element selections.
This commit is contained in:
Luke Wilde 2022-12-30 23:00:11 +00:00 committed by Tim Flynn
parent 6d188d72c0
commit 1011067a60
3 changed files with 11 additions and 0 deletions

View file

@ -837,4 +837,11 @@ i32 HTMLInputElement::default_tab_index_value() const
return 0;
}
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-setselectionrange
WebIDL::ExceptionOr<void> HTMLInputElement::set_selection_range(u32 start, u32 end, DeprecatedString const& direction)
{
dbgln("(STUBBED) HTMLInputElement::set_selection_range(start={}, end={}, direction='{}'). Called on: {}", start, end, direction, debug_description());
return {};
}
}