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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/global-constructors.html

Issue 2840163002: DOM: NodeIterator.filter and TreeWalker.filter should return values which were specified to createN… (Closed)
Patch Set: Move ToV8() to ToV8ForCore.h, etc. Created 3 years, 8 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
Index: third_party/WebKit/LayoutTests/fast/dom/global-constructors.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/global-constructors.html b/third_party/WebKit/LayoutTests/fast/dom/global-constructors.html
index 304f9953257fe84b2ed0f1d28328eb134eabc52d..7b7d59ab766e47be8151b07ca107c4a89651fa4e 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/global-constructors.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/global-constructors.html
@@ -81,7 +81,7 @@ function test()
try {
nodeFilter = document.createNodeIterator(document, NodeFilter.SHOW_ELEMENT, function () {}, false).filter;
} catch(e) {}
- shouldBe("window.NodeFilter.prototype.isPrototypeOf(nodeFilter)", true);
+ shouldBe("window.NodeFilter.prototype.isPrototypeOf(nodeFilter)", false);
originalNodePrototype = window.Node.prototype;

Powered by Google App Engine
This is Rietveld 408576698