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

Unified Diff: LayoutTests/fast/dom/NodeIterator/NodeIterator-basic.html

Issue 744363002: Remove NodeIterator.expandEntityReferences / TreeWalker.expandEntityReferences (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | « no previous file | LayoutTests/fast/dom/NodeIterator/NodeIterator-basic-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/NodeIterator/NodeIterator-basic.html
diff --git a/LayoutTests/fast/dom/NodeIterator/NodeIterator-basic.html b/LayoutTests/fast/dom/NodeIterator/NodeIterator-basic.html
index d2e3fd3bd689e5385d1222be28c34c7583994ec3..43e03cf09a303a7f5d96f00811dbf027466b333b 100644
--- a/LayoutTests/fast/dom/NodeIterator/NodeIterator-basic.html
+++ b/LayoutTests/fast/dom/NodeIterator/NodeIterator-basic.html
@@ -193,19 +193,6 @@ test(function ()
testIteratorForwardAndBackward(iterator, expected);
}, 'Test the behavior of NodeIterator when NodeFilter is specified.');
-test(function ()
-{
- var filter = function (node) {
- return NodeFilter.FILTER_ACCEPT;
- };
- [true, false].forEach(function (expandEntityReferences) {
- var iterator = document.createNodeIterator(createSampleDOM(), NodeFilter.SHOW_ALL, filter, expandEntityReferences);
- assert_true(iterator instanceof NodeIterator);
- assert_false(iterator.expandEntityReferences);
- testIteratorForwardAndBackward(iterator, expectedAll);
- });
-}, 'Test that the fourth argument (expandEntityReferences) is ignored.');
-
test(function() {
var nodeIterator = document.createNodeIterator(document.body, 42, null);
assert_equals(nodeIterator.root, document.body);
« no previous file with comments | « no previous file | LayoutTests/fast/dom/NodeIterator/NodeIterator-basic-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698