Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / MutationObserver / document-fragment-insertion-expected.txt
blobf2f3ee3f43aa99c62ba38aebe1374742b72ce138
1 Inserting DocumentFragments should remove all children of the fragment before inserting the children.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 Testing appendChild
7 PASS mutations.length is 2
8 PASS mutations[0].addedNodes.length is 0
9 PASS mutations[0].removedNodes.length is 2
10 PASS mutations[1].addedNodes.length is 2
11 PASS mutations[1].removedNodes.length is 0
13 Testing insertBefore
14 PASS mutations.length is 2
15 PASS mutations[0].addedNodes.length is 0
16 PASS mutations[0].removedNodes.length is 2
17 PASS mutations[1].addedNodes.length is 2
18 PASS mutations[1].removedNodes.length is 0
20 Testing replaceChild
21 PASS mutations.length is 2
22 PASS mutations[0].addedNodes.length is 0
23 PASS mutations[0].removedNodes.length is 2
24 PASS mutations[1].addedNodes.length is 2
25 PASS mutations[1].removedNodes.length is 1
27 PASS successfullyParsed is true
29 TEST COMPLETE