author | Andrea Marchesini <amarchesini@mozilla.com> |
Wed, 11 Apr 2018 07:42:43 +0200 | |
changeset 412794 | fb6547e96546f8063935adb89ddff55c3f7f50e9 |
parent 412793 | 42be71805c4200a6507cf7e83342b89ede53ebb3 |
child 412795 | 2bed6ea34a828b7ef19b89d1e7807b14c5badb4a |
push id | 33818 |
push user | apavel@mozilla.com |
push date | Wed, 11 Apr 2018 14:36:40 +0000 |
treeherder | mozilla-central@cfe6399e142c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | bz |
bugs | 1437897 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/dom/performance/Performance.cpp +++ b/dom/performance/Performance.cpp @@ -407,17 +407,16 @@ Performance::SetResourceTimingBufferSize { mResourceTimingBufferSize = aMaxSize; } void Performance::InsertResourceEntry(PerformanceEntry* aEntry) { MOZ_ASSERT(aEntry); - MOZ_ASSERT(mResourceEntries.Length() <= mResourceTimingBufferSize); // We won't add an entry when 'privacy.resistFingerprint' is true. if (nsContentUtils::ShouldResistFingerprinting()) { return; } // Don't add the entry if the buffer is full if (mResourceEntries.Length() >= mResourceTimingBufferSize) {