| OLD | NEW |
| 1 NodeIterator rooted at a DocumentType node not yet associated with a document: | 1 NodeIterator rooted at a DocumentType node not yet associated with a document: |
| 2 PASS iter.referenceNode.ownerDocument is null | 2 PASS iter.referenceNode.ownerDocument is document |
| 3 PASS iter.nextNode() is dt | 3 PASS iter.nextNode() is dt |
| 4 PASS iter.nextNode() is null | 4 PASS iter.nextNode() is null |
| 5 PASS iter.previousNode() is dt | 5 PASS iter.previousNode() is dt |
| 6 PASS iter.previousNode() is null | 6 PASS iter.previousNode() is null |
| 7 | 7 |
| 8 NodeIterator rooted at a DocumentType node that becomes used by a document after
the iterator has been created: | 8 NodeIterator rooted at a DocumentType node that becomes used by a document after
the iterator has been created: |
| 9 PASS iter.nextNode() is dt | 9 PASS iter.nextNode() is dt |
| 10 PASS iter.previousNode() is dt | 10 PASS iter.previousNode() is dt |
| 11 ..and after removing it from the document: | 11 ..and after removing it from the document: |
| 12 PASS iter.nextNode() is dt | 12 PASS iter.nextNode() is dt |
| 13 PASS iter.previousNode() is dt | 13 PASS iter.previousNode() is dt |
| 14 PASS successfullyParsed is true | 14 PASS successfullyParsed is true |
| 15 | 15 |
| 16 TEST COMPLETE | 16 TEST COMPLETE |
| 17 | 17 |
| OLD | NEW |