mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
JavaScript Tests - update test to ignore 1ms differences, bug 354998
This commit is contained in:
parent
0d4d6ed53c
commit
689e0fcc43
@ -77,7 +77,7 @@ var time2 = test();
|
||||
for (var i = 0; i != 1000*1000; ++i)
|
||||
delete Object.prototype[i];
|
||||
|
||||
if (time1 * 10 < time2) {
|
||||
if (time1 * 10 + 1 < time2) {
|
||||
throw "Assigns to Object.prototype increased time of XML enumeration from "+
|
||||
time1+"ms to "+time2+"ms";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user