mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backout c1243d1fb401 (bug 751509) for turning test_aboutmemory.xul permaorange
This commit is contained in:
parent
8ff1c7acc1
commit
62058070ea
@ -1415,7 +1415,7 @@ OtherReport.prototype = {
|
||||
case UNITS_BYTES:
|
||||
case UNITS_COUNT:
|
||||
case UNITS_COUNT_CUMULATIVE: return n < 0;
|
||||
case UNITS_PERCENTAGE: return n < 0; /* percentages may be greater than 100% */
|
||||
case UNITS_PERCENTAGE: return !(0 <= n && n <= 10000);
|
||||
default:
|
||||
assert(false, "bad units in OtherReport.isInvalid");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user