aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/script/textinput.rs13
-rw-r--r--tests/unit/script/textinput.rs23
2 files changed, 34 insertions, 2 deletions
diff --git a/components/script/textinput.rs b/components/script/textinput.rs
index 871af9637c0..5beee247f96 100644
--- a/components/script/textinput.rs
+++ b/components/script/textinput.rs
@@ -651,8 +651,17 @@ impl<T: ClipboardProvider> TextInput<T> {
start = end;
}
- self.selection_begin = Some(self.get_text_point_for_absolute_point(start));
- self.edit_point = self.get_text_point_for_absolute_point(end);
+ match self.selection_direction {
+ SelectionDirection::None |
+ SelectionDirection::Forward => {
+ self.selection_begin = Some(self.get_text_point_for_absolute_point(start));
+ self.edit_point = self.get_text_point_for_absolute_point(end);
+ },
+ SelectionDirection::Backward => {
+ self.selection_begin = Some(self.get_text_point_for_absolute_point(end));
+ self.edit_point = self.get_text_point_for_absolute_point(start);
+ }
+ }
self.assert_ok_selection();
}
diff --git a/tests/unit/script/textinput.rs b/tests/unit/script/textinput.rs
index d5e9c1268d6..01d8931ff67 100644
--- a/tests/unit/script/textinput.rs
+++ b/tests/unit/script/textinput.rs
@@ -458,3 +458,26 @@ fn test_textinput_cursor_position_correct_after_clearing_selection() {
assert_eq!(textinput.edit_point.index, 0);
assert_eq!(textinput.edit_point.line, 0);
}
+
+
+#[test]
+fn test_textinput_set_selection_with_direction() {
+ let mut textinput = text_input(Lines::Single, "abcdef");
+ textinput.selection_direction = SelectionDirection::Forward;
+ textinput.set_selection_range(2, 6);
+ assert_eq!(textinput.edit_point.line, 0);
+ assert_eq!(textinput.edit_point.index, 6);
+
+ assert!(textinput.selection_begin.is_some());
+ assert_eq!(textinput.selection_begin.unwrap().line, 0);
+ assert_eq!(textinput.selection_begin.unwrap().index, 2);
+
+ textinput.selection_direction = SelectionDirection::Backward;
+ textinput.set_selection_range(2, 6);
+ assert_eq!(textinput.edit_point.line, 0);
+ assert_eq!(textinput.edit_point.index, 2);
+
+ assert!(textinput.selection_begin.is_some());
+ assert_eq!(textinput.selection_begin.unwrap().line, 0);
+ assert_eq!(textinput.selection_begin.unwrap().index, 6);
+}