blob: f2f3ee3f43aa99c62ba38aebe1374742b72ce138 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
Inserting DocumentFragments should remove all children of the fragment before inserting the children.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Testing appendChild
PASS mutations.length is 2
PASS mutations[0].addedNodes.length is 0
PASS mutations[0].removedNodes.length is 2
PASS mutations[1].addedNodes.length is 2
PASS mutations[1].removedNodes.length is 0
Testing insertBefore
PASS mutations.length is 2
PASS mutations[0].addedNodes.length is 0
PASS mutations[0].removedNodes.length is 2
PASS mutations[1].addedNodes.length is 2
PASS mutations[1].removedNodes.length is 0
Testing replaceChild
PASS mutations.length is 2
PASS mutations[0].addedNodes.length is 0
PASS mutations[0].removedNodes.length is 2
PASS mutations[1].addedNodes.length is 2
PASS mutations[1].removedNodes.length is 1
PASS successfullyParsed is true
TEST COMPLETE
|