Index: LayoutTests/fast/js/var-declarations-shadowing.html |
diff --git a/LayoutTests/fast/js/var-declarations-shadowing.html b/LayoutTests/fast/js/var-declarations-shadowing.html |
index f3429e25cd3ee71c34f19e4d411c47c638e89b0c..b213525d3e3dd069351850f0ce8491958a601990 100644 |
--- a/LayoutTests/fast/js/var-declarations-shadowing.html |
+++ b/LayoutTests/fast/js/var-declarations-shadowing.html |
@@ -256,8 +256,8 @@ shouldBe(eval('screen == marker'), "eval('screen == marker')", false); |
try { |
eval("var history = marker"); |
} catch(e) { } |
-shouldBe(history == marker, "history == marker", true); |
-shouldBe(eval('history == marker'), "eval('history == marker')", true); |
+shouldBe(history == marker, "history == marker", false); |
+shouldBe(eval('history == marker'), "eval('history == marker')", false); |
log("-----"); |