summaryrefslogtreecommitdiffstats
path: root/dom/animation/DocumentTimeline.cpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
commit40a355a42d4a9444dc753c04c6608dade2f06a23 (patch)
tree871fc667d2de662f171103ce5ec067014ef85e61 /dom/animation/DocumentTimeline.cpp
parentAdding upstream version 124.0.1. (diff)
downloadfirefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz
firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/animation/DocumentTimeline.cpp')
-rw-r--r--dom/animation/DocumentTimeline.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/dom/animation/DocumentTimeline.cpp b/dom/animation/DocumentTimeline.cpp
index 85e08ca8b0..804ae66160 100644
--- a/dom/animation/DocumentTimeline.cpp
+++ b/dom/animation/DocumentTimeline.cpp
@@ -55,9 +55,9 @@ DocumentTimeline::DocumentTimeline(Document* aDocument,
}
DocumentTimeline::~DocumentTimeline() {
- MOZ_ASSERT(!mIsObservingRefreshDriver,
- "Timeline should have disassociated"
- " from the refresh driver before being destroyed");
+ MOZ_RELEASE_ASSERT(!mIsObservingRefreshDriver,
+ "Timeline should have disassociated"
+ " from the refresh driver before being destroyed");
if (isInList()) {
remove();
}
@@ -206,7 +206,8 @@ void DocumentTimeline::NotifyTimerAdjusted(TimeStamp aTime) {
}
void DocumentTimeline::ObserveRefreshDriver(nsRefreshDriver* aDriver) {
- MOZ_ASSERT(!mIsObservingRefreshDriver);
+ MOZ_RELEASE_ASSERT(!mIsObservingRefreshDriver,
+ "shouldn't register as an observer more than once");
// Set the mIsObservingRefreshDriver flag before calling AddRefreshObserver
// since it might end up calling NotifyTimerAdjusted which calls
// MostRecentRefreshTimeUpdated which has an assertion for
@@ -218,9 +219,10 @@ void DocumentTimeline::ObserveRefreshDriver(nsRefreshDriver* aDriver) {
}
void DocumentTimeline::NotifyRefreshDriverCreated(nsRefreshDriver* aDriver) {
- MOZ_ASSERT(!mIsObservingRefreshDriver,
- "Timeline should not be observing the refresh driver before"
- " it is created");
+ MOZ_RELEASE_ASSERT(
+ !mIsObservingRefreshDriver,
+ "Timeline should not be observing the refresh driver before"
+ " it is created");
if (!mAnimationOrder.isEmpty()) {
MOZ_ASSERT(isInList(),