| 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);
|
|
|