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

Unified Diff: Source/core/dom/Document.idl

Issue 106423002: Remove fourth argument to createNodeIterator/createTreeWalker (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: base files Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.idl
diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
index f5f0b83a44808fd22817231265d1bb7a16135a39..b9c7fc2e162879fc8fbb11692bcb8de94c437574 100644
--- a/Source/core/dom/Document.idl
+++ b/Source/core/dom/Document.idl
@@ -72,17 +72,13 @@ callback CustomElementConstructor = Element ();
Range createRange();
// DOM Level 2 Traversal and Range (DocumentTraversal interface)
- // In DOM4, the fourth argument |expandEntityReferences| is removed.
- // Historically, this argument was never implemented and has been ignored.
- // We still receive the argument to keep compatibility, but don't do anything if it's specified.
+
[RaisesException] NodeIterator createNodeIterator(Node root,
optional unsigned long whatToShow,
- optional NodeFilter filter,
- optional boolean expandEntityReferences);
+ optional NodeFilter filter);
[RaisesException] TreeWalker createTreeWalker(Node root,
optional unsigned long whatToShow,
- optional NodeFilter filter,
- optional boolean expandEntityReferences);
+ optional NodeFilter filter);
// DOM Level 2 Abstract Views (DocumentView interface)
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698