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

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

Issue 1516553002: Remove deprecation messages for no-ops that are left in the specs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and update tests Created 5 years 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
OLDNEW
1 CONSOLE WARNING: 'NodeIterator.detach' is now a no-op, as per DOM (https://dom.s pec.whatwg.org/#dom-nodeiterator-detach).
2 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:
3 PASS iter.referenceNode.ownerDocument is document 2 PASS iter.referenceNode.ownerDocument is document
4 PASS iter.nextNode() is dt 3 PASS iter.nextNode() is dt
5 PASS iter.nextNode() is null 4 PASS iter.nextNode() is null
6 PASS iter.previousNode() is dt 5 PASS iter.previousNode() is dt
7 PASS iter.previousNode() is null 6 PASS iter.previousNode() is null
8 7
9 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:
10 PASS iter.nextNode() is dt 9 PASS iter.nextNode() is dt
11 PASS iter.previousNode() is dt 10 PASS iter.previousNode() is dt
12 ..and after removing it from the document: 11 ..and after removing it from the document:
13 PASS iter.nextNode() is dt 12 PASS iter.nextNode() is dt
14 PASS iter.previousNode() is dt 13 PASS iter.previousNode() is dt
15 PASS successfullyParsed is true 14 PASS successfullyParsed is true
16 15
17 TEST COMPLETE 16 TEST COMPLETE
18 17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698