summaryrefslogtreecommitdiff
path: root/dom
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2023-10-16 06:51:06 +0000
committerMoonchild <moonchild@palemoon.org>2023-10-16 06:51:06 +0000
commit087febcc4b017a0af4ec82b1283341c8d979a17e (patch)
tree224167b7a5edb5aa0437c343cc78c8a5861922c6 /dom
parent6430adfb2d937f4a37bcc0e18aeaae411672582c (diff)
parentd5020b69bd84b937de89b2aef5787bfdb4e37dac (diff)
downloaduxp-087febcc4b017a0af4ec82b1283341c8d979a17e.tar.gz
Merge pull request 'Stop pretending proxies have a JSNative call/construct hook.' (#2345) from dbsoft/UXP:readablestreams-crash into master
Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/2345
Diffstat (limited to 'dom')
-rw-r--r--dom/workers/WorkerPrivate.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/dom/workers/WorkerPrivate.cpp b/dom/workers/WorkerPrivate.cpp
index 3b3de7e3b5..51ab67f708 100644
--- a/dom/workers/WorkerPrivate.cpp
+++ b/dom/workers/WorkerPrivate.cpp
@@ -6226,8 +6226,6 @@ WorkerPrivate::RunExpiredTimeouts(JSContext* aCx)
// Guard against recursion.
mRunningExpiredTimeouts = true;
- MOZ_DIAGNOSTIC_ASSERT(data->mCurrentTimerNestingLevel == 0);
-
// Run expired timeouts.
for (uint32_t index = 0; index < expiredTimeouts.Length(); index++) {
TimeoutInfo*& info = expiredTimeouts[index];