mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-09 04:25:38 +00:00
Bug 751509 - Don't assert that about:memory percentages are less than 100%. r=njn
This commit is contained in:
parent
c248872f5e
commit
807688a059
@ -1415,7 +1415,7 @@ OtherReport.prototype = {
|
||||
case UNITS_BYTES:
|
||||
case UNITS_COUNT:
|
||||
case UNITS_COUNT_CUMULATIVE: return n < 0;
|
||||
case UNITS_PERCENTAGE: return !(0 <= n && n <= 10000);
|
||||
case UNITS_PERCENTAGE: return n < 0; /* percentages may be greater than 100% */
|
||||
default:
|
||||
assert(false, "bad units in OtherReport.isInvalid");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user