Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / cleanup-on-move-expected.txt
blobdb5f8e7253ec53c99359ed106b2c3f478f9c7aa3
1 This test drags a selection of a couple of <li> and drops them after another <li> in the same list. It verifies that no empty <li> (actually with a <br> inside) are left after the moving operation.
3 The original list looks like this. 'two' and 'three' are selected and are going to be dropped after 'four':
4 | "
6 | <li>
7 |   id="one"
8 |   "one"
9 | <li>
10 |   id="two"
11 |   "<#selection-anchor>two"
12 | <li>
13 |   id="three"
14 |   "three<#selection-focus>"
15 | <li>
16 |   id="four"
17 |   "four"
18 | "
21 'two' and 'three' should appear as <li> after 'four' and no empty <li> (nor a <br> placeholder) should be there:
22 | "
24 | <li>
25 |   id="one"
26 |   "one"
27 | <li>
28 |   id="four"
29 |   "four"
30 | <li>
31 |   id="two"
32 |   "two"
33 | <li>
34 |   id="three"
35 |   "three"
36 | "