| OLD | NEW |
| 1 CONSOLE WARNING: 'NodeIterator.detach' is now a no-op, as per DOM (http://dom.sp
ec.whatwg.org/#dom-nodeiterator-detach). |
| 1 NodeIterator rooted at a DocumentType node not yet associated with a document: | 2 NodeIterator rooted at a DocumentType node not yet associated with a document: |
| 2 PASS iter.referenceNode.ownerDocument is document | 3 PASS iter.referenceNode.ownerDocument is document |
| 3 PASS iter.nextNode() is dt | 4 PASS iter.nextNode() is dt |
| 4 PASS iter.nextNode() is null | 5 PASS iter.nextNode() is null |
| 5 PASS iter.previousNode() is dt | 6 PASS iter.previousNode() is dt |
| 6 PASS iter.previousNode() is null | 7 PASS iter.previousNode() is null |
| 7 | 8 |
| 8 NodeIterator rooted at a DocumentType node that becomes used by a document after
the iterator has been created: | 9 NodeIterator rooted at a DocumentType node that becomes used by a document after
the iterator has been created: |
| 9 PASS iter.nextNode() is dt | 10 PASS iter.nextNode() is dt |
| 10 PASS iter.previousNode() is dt | 11 PASS iter.previousNode() is dt |
| 11 ..and after removing it from the document: | 12 ..and after removing it from the document: |
| 12 PASS iter.nextNode() is dt | 13 PASS iter.nextNode() is dt |
| 13 PASS iter.previousNode() is dt | 14 PASS iter.previousNode() is dt |
| 14 PASS successfullyParsed is true | 15 PASS successfullyParsed is true |
| 15 | 16 |
| 16 TEST COMPLETE | 17 TEST COMPLETE |
| 17 | 18 |
| OLD | NEW |