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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/constants.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/constants.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/constants.html b/third_party/WebKit/LayoutTests/fast/dom/constants.html
index 7dddc4ca8cd7bd6942831f809b2c49320eeebcd0..3abd9425e980fb8dcd5c37fb79a748ed83776e4e 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/constants.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/constants.html
@@ -53,34 +53,6 @@ function test() {
shouldBe("window.CSSRule.FONT_FACE_RULE", 5);
shouldBe("window.CSSRule.PAGE_RULE", 6);
- var nodeIterator;
- try {
- nodeIterator = document.createNodeIterator(document,
- NodeFilter.SHOW_ELEMENT,
- function () { return NodeFilter.FILTER_ACCEPT; },
- false);
- } catch(e) {
- nodeIterator = new Object();
- }
-
- nodeFilter = nodeIterator.filter;
- shouldBe("nodeFilter.FILTER_ACCEPT", 1);
- shouldBe("nodeFilter.FILTER_REJECT", 2);
- shouldBe("nodeFilter.FILTER_SKIP", 3);
- shouldBe("nodeFilter.SHOW_ALL", 4294967295);
- shouldBe("nodeFilter.SHOW_ELEMENT", 0x00000001);
- shouldBe("nodeFilter.SHOW_ATTRIBUTE", 0x00000002);
- shouldBe("nodeFilter.SHOW_TEXT", 0x00000004);
- shouldBe("nodeFilter.SHOW_CDATA_SECTION", 0x00000008);
- shouldBe("nodeFilter.SHOW_ENTITY_REFERENCE", 0x00000010);
- shouldBe("nodeFilter.SHOW_ENTITY", 0x00000020);
- shouldBe("nodeFilter.SHOW_PROCESSING_INSTRUCTION", 0x00000040);
- shouldBe("nodeFilter.SHOW_COMMENT", 0x00000080);
- shouldBe("nodeFilter.SHOW_DOCUMENT", 0x00000100);
- shouldBe("nodeFilter.SHOW_DOCUMENT_TYPE", 0x00000200);
- shouldBe("nodeFilter.SHOW_DOCUMENT_FRAGMENT", 0x00000400);
- shouldBe("nodeFilter.SHOW_NOTATION", 0x00000800);
-
shouldBe("window.NodeFilter.FILTER_ACCEPT", 1);
shouldBe("window.NodeFilter.FILTER_REJECT", 2);
shouldBe("window.NodeFilter.FILTER_SKIP", 3);
@@ -115,7 +87,7 @@ function test() {
<p>This page tests CSSRule, NodeFilter, and Event. It tests:</p>
<ol>
<li>Whether their global constructors have the correct constant values</li>
- <li>Whether their objects have the correct constant values</li>
+ <li>Whether their objects have the correct constant values, except NodeFilter</li>
</ol>
<hr>
<div id='console'></div>

Powered by Google App Engine
This is Rietveld 408576698