OLD | NEW |
(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 |
OLD | NEW |