diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-07-11 10:57:01 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-07-11 10:57:29 -0400 |
commit | 6ac6136d17b86c79be227bd6255d42a52d40c959 (patch) | |
tree | e4ee854c5cd658ac839921f0027d324f37fad14c /dom/base | |
parent | 936438dd55b30c1b6d435905c9494ef6a6511489 (diff) | |
download | UXP-6ac6136d17b86c79be227bd6255d42a52d40c959.tar UXP-6ac6136d17b86c79be227bd6255d42a52d40c959.tar.gz UXP-6ac6136d17b86c79be227bd6255d42a52d40c959.tar.lz UXP-6ac6136d17b86c79be227bd6255d42a52d40c959.tar.xz UXP-6ac6136d17b86c79be227bd6255d42a52d40c959.zip |
Issue #618 - Remove eager instantiation - Debug follow up
The added debug assertion did not take into account microtask refactoring done in BZ 1405821.
Resulting in error: no member named 'IsInMicroTask' in 'nsContentUtils'.
This resolves the error.
Diffstat (limited to 'dom/base')
-rw-r--r-- | dom/base/nsJSUtils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dom/base/nsJSUtils.cpp b/dom/base/nsJSUtils.cpp index 65965d74b..2601ffd87 100644 --- a/dom/base/nsJSUtils.cpp +++ b/dom/base/nsJSUtils.cpp @@ -315,7 +315,8 @@ nsJSUtils::ModuleInstantiate(JSContext* aCx, JS::Handle<JSObject*> aModule) MOZ_ASSERT(aCx == nsContentUtils::GetCurrentJSContext()); MOZ_ASSERT(NS_IsMainThread()); - MOZ_ASSERT(nsContentUtils::IsInMicroTask()); + MOZ_ASSERT(CycleCollectedJSContext::Get() && + CycleCollectedJSContext::Get()->MicroTaskLevel()); NS_ENSURE_TRUE(xpc::Scriptability::Get(aModule).Allowed(), NS_OK); |