From ee4010f2675fb54d95af13438246c9af16d6456c Mon Sep 17 00:00:00 2001 From: "L. David Baron" Date: Thu, 8 Oct 2009 08:13:49 -0700 Subject: [PATCH] Increase test tolerance to try to fix random orange. --- layout/style/test/test_transitions.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/style/test/test_transitions.html b/layout/style/test/test_transitions.html index 2f6811963541..12a7c877bfa1 100644 --- a/layout/style/test/test_transitions.html +++ b/layout/style/test/test_transitions.html @@ -405,8 +405,8 @@ function check_transition_value(func, start_time, end_time, } else { // seconds // FIXME: Why do we need so much tolerance at the low end of the - // range (primarily for Mac)? - time_range = [ (gCurrentTime - gStartTime2 - 40) / 1000, + // range? + time_range = [ (gCurrentTime - gStartTime2 - 80) / 1000, (Date.now() - gStartTime1 + 20) / 1000 ]; uns_range = [ value_at(time_range[0], -0.01), value_at(time_range[1], 0.01) ];