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

Unified Diff: LayoutTests/fast/dom/constants.html

Issue 387263003: Adopt unsigned long constant type into DOM (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 | « no previous file | LayoutTests/fast/dom/constants-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/constants.html
diff --git a/LayoutTests/fast/dom/constants.html b/LayoutTests/fast/dom/constants.html
index ed1dac4c50cc013ed8d4d76657e4a6298a7a9c20..cbca266f34849cd43e2261c33c6f029359614ed3 100644
--- a/LayoutTests/fast/dom/constants.html
+++ b/LayoutTests/fast/dom/constants.html
@@ -80,7 +80,7 @@ function test() {
shouldBe("nodeFilter.FILTER_ACCEPT", 1);
shouldBe("nodeFilter.FILTER_REJECT", 2);
shouldBe("nodeFilter.FILTER_SKIP", 3);
- shouldBe("nodeFilter.SHOW_ALL", -1);
+ shouldBe("nodeFilter.SHOW_ALL", 4294967295);
shouldBe("nodeFilter.SHOW_ELEMENT", 0x00000001);
shouldBe("nodeFilter.SHOW_ATTRIBUTE", 0x00000002);
shouldBe("nodeFilter.SHOW_TEXT", 0x00000004);
@@ -97,7 +97,7 @@ function test() {
shouldBe("window.NodeFilter.FILTER_ACCEPT", 1);
shouldBe("window.NodeFilter.FILTER_REJECT", 2);
shouldBe("window.NodeFilter.FILTER_SKIP", 3);
- shouldBe("window.NodeFilter.SHOW_ALL", -1);
+ shouldBe("window.NodeFilter.SHOW_ALL", 4294967295);
shouldBe("window.NodeFilter.SHOW_ELEMENT", 0x00000001);
shouldBe("window.NodeFilter.SHOW_ATTRIBUTE", 0x00000002);
shouldBe("window.NodeFilter.SHOW_TEXT", 0x00000004);
« no previous file with comments | « no previous file | LayoutTests/fast/dom/constants-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698