mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Allow deletion from overflowed textinput
This commit is contained in:
parent
c6192dc286
commit
c7a31990a2
2 changed files with 22 additions and 6 deletions
|
@ -161,6 +161,28 @@ fn test_single_line_textinput_with_max_length_doesnt_allow_appending_characters_
|
|||
assert_eq!(textinput.get_content(), "atooe");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_single_line_textinput_with_max_length_allows_deletion_when_replacing_a_selection() {
|
||||
let mut textinput = TextInput::new(
|
||||
Lines::Single,
|
||||
DOMString::from("abcde"),
|
||||
DummyClipboardContext::new(""),
|
||||
Some(UTF16CodeUnits(1)),
|
||||
None,
|
||||
SelectionDirection::None,
|
||||
);
|
||||
|
||||
textinput.adjust_horizontal(UTF8Bytes::one(), Direction::Forward, Selection::NotSelected);
|
||||
textinput.adjust_horizontal(UTF8Bytes(2), Direction::Forward, Selection::Selected);
|
||||
|
||||
// Selection is now "abcde"
|
||||
// --
|
||||
|
||||
textinput.replace_selection(DOMString::from("only deletion should be applied"));
|
||||
|
||||
assert_eq!(textinput.get_content(), "ade");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_single_line_textinput_with_max_length_multibyte() {
|
||||
let mut textinput = TextInput::new(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue