Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1215)

Side by Side Diff: LayoutTests/fast/dom/node-iterator-with-doctype-root-expected.txt

Issue 22880019: [DOM4] Doctypes now always have a node document and can be moved across document boundaries (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Improve tests Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/node-iterator-with-doctype-root.html ('k') | LayoutTests/fast/events/dispatch-event-no-document.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698