This test drags a selection of one
and drops them after another in the first list. The same test is repeated in the second list but this time with two selected items instead of one. It verifies that the behavior is independent of how many fully selected items we move, i.e. fully selected are moved as and not just as plain text
The original list looks like this. 'two' is selected and is going to be dropped after 'four':
| "
"
|
| id="one"
| "one"
|
| id="two"
| "<#selection-anchor>two<#selection-focus>"
|
| id="three"
| "three"
|
| id="four"
| "four"
| "
"
'two' should appear as a new after 'four':
| "
"
|
| id="one"
| "one"
|
| id="three"
| "three"
|
| id="four"
| "four"
|
| id="two"
| "two"
| "
"
The original list looks like this. 'two' and 'three' are selected and are going to be dropped after 'four':
|
| id="one"
| "one"
|
| id="two"
| "<#selection-anchor>two"
|
| id="three"
| "three<#selection-focus>"
|
| id="four"
| "four"
'two' and 'three' should appear as after 'four':
|
| id="one"
| "one"
|
| id="four"
| "four"
|
| id="two"
| "two"
|
| id="three"
| "three"