Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Side by Side Diff: third_party/WebKit/LayoutTests/editing/execCommand/insert-list-items-inside-another-list-expected.txt

Issue 2757563004: Adjust insertion point when listifying unordered list items (Closed)
Patch Set: Added regression test. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Test to make sure inserting an ordered/unordered list inside another list works
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Select 1 node
7
8 PASS <ul><li id="first">hello</li><li>world</li><li>WebKit</li></ul>
9 got:<ol><li>hello</li></ol><ul><li>world</li><li>WebKit</li></ul>
10
11 PASS <ul><li>hello</li><li id="first">world</li><li>WebKit</li></ul>
12 got:<ul><li>hello</li></ul><ol><li>world</li></ol><ul><li>WebKit</li></ul>
13
14 PASS <ul><li>hello</li><li>world</li><li id="first">WebKit</li></ul>
15 got:<ul><li>hello</li><li>world</li></ul><ol><li>WebKit</li></ol>
16
17 PASS <ol><li id="first">hello</li><li>world</li><li>WebKit</li></ol>
18 got:<ul><li>hello</li></ul><ol><li>world</li><li>WebKit</li></ol>
19
20 PASS <ol><li>hello</li><li id="first">world</li><li>WebKit</li></ol>
21 got:<ol><li>hello</li></ol><ul><li>world</li></ul><ol><li>WebKit</li></ol>
22
23 PASS <ol><li>hello</li><li>world</li><li id="first">WebKit</li></ol>
24 got:<ol><li>hello</li><li>world</li></ol><ul><li>WebKit</li></ul>
25
26 Select 2 nodes
27
28 PASS <ul><li id="first">hello</li><li id="second">world</li><li>WebKit</li></ul>
29 got:<ol><li>hello</li><li>world</li></ol><ul><li>WebKit</li></ul>
30
31 PASS <ul><li>hello</li><li id="first">world</li><li id="second">WebKit</li></ul>
32 got:<ul><li>hello</li></ul><ol><li>world</li><li id="second">WebKit</li></ol>
33
34 PASS <ol><li id="first">hello</li><li id="second">world</li><li>WebKit</li></ol>
35 got:<ul><li>hello</li><li>world</li></ul><ol><li>WebKit</li></ol>
36
37 PASS <ol><li>hello</li><li id="first">world</li><li id="second">WebKit</li></ol>
38 got:<ol><li>hello</li></ol><ul><li>world</li><li id="second">WebKit</li></ul>
39
40 PASS successfullyParsed is true
41
42 TEST COMPLETE
43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698