Commit 88463228 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml/tests: Increase tolerance in date_now test.

parent 68bb2f62
......@@ -36,7 +36,7 @@ sync_test("date_now", function() {
var now = Date.now();
var time = (new Date()).getTime();
ok(time >= now && time-now < 50, "unexpected Date.now() result " + now + " expected " + time);
ok(time >= now && time - now < 500, "unexpected Date.now() result " + now + " expected " + time);
Date.now(1, 2, 3);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment