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

Unified Diff: core/dom/NodeIterator.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/dom/NodeFilter.idl ('k') | core/dom/NodeList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/NodeIterator.idl
diff --git a/core/dom/NodeIterator.idl b/core/dom/NodeIterator.idl
index ef46701e401596b01eb7ccfdabf38017fe82c1a0..e7e60da1be62e900cfd25d09e1559d28d8b5f9d3 100644
--- a/core/dom/NodeIterator.idl
+++ b/core/dom/NodeIterator.idl
@@ -18,19 +18,20 @@
* Boston, MA 02110-1301, USA.
*/
-// Introduced in DOM Level 2
+// https://dom.spec.whatwg.org/#interface-nodeiterator
+
[
SetWrapperReferenceTo(NodeFilter filter),
WillBeGarbageCollected,
] interface NodeIterator {
- readonly attribute Node root;
- readonly attribute unsigned long whatToShow;
- readonly attribute NodeFilter filter;
- [DeprecateAs=NodeIteratorExpandEntityReferences] readonly attribute boolean expandEntityReferences;
+ [SameObject] readonly attribute Node root;
readonly attribute Node referenceNode;
readonly attribute boolean pointerBeforeReferenceNode;
+ readonly attribute unsigned long whatToShow;
+ readonly attribute NodeFilter? filter;
+
+ [RaisesException] Node? nextNode();
+ [RaisesException] Node? previousNode();
- [RaisesException] Node nextNode();
- [RaisesException] Node previousNode();
[DeprecateAs=NodeIteratorDetach] void detach();
};
« no previous file with comments | « core/dom/NodeFilter.idl ('k') | core/dom/NodeList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698