fragment-mutation-expected.txt revision eff69b907ef2cd3a9af0351287a929c66f58e3f6
1This test creates a fragment containing three elements: "B", "U", and "P", attempts to appendChild this fragment and studies effects of mutation events on the fragment.
2
3Inserting an element in front of the next item in fragment should not affect the result: PASS
4Removing next item should not abort iteration: PASS
5Appending an element at the end of the fragment should not affect the result: PASS
6Continually re-appending removed element to the fragment should eventually throw NOT_FOUND_ERR: PASS
7Moving next item to become previous sibling of the re-parentee should not result in stack exhaustion: PASS
8
9This test creates a fragment containing three elements: "B", "U", and "P", attempts to insertBefore this fragment and studies effects of mutation events on the fragment.
10
11Inserting an element in front of the next item in fragment should not affect the result: PASS
12Removing next item should not abort iteration: PASS
13Appending an element at the end of the fragment should not affect the result: PASS
14Continually re-appending removed element to the fragment should eventually throw NOT_FOUND_ERR: PASS
15Moving next item to become previous sibling of the re-parentee should not result in stack exhaustion: PASS
16
17
18