mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 02:57:38 +00:00
5b63deea14
The message handler framework now automatically retries executing module methods in the window global if the corresponding JSWindowActor pair is destroyed or becomes inactive. This behavior can be disabled by setting the preference "remote.retry-on-abort" to false, in which case retries will only occur during the initial navigation. Additionally, the behavior can be explicitly controlled by individual callers by passing the "retryOnAbort" flag. Differential Revision: https://phabricator.services.mozilla.com/D223398
19 lines
698 B
Plaintext
19 lines
698 B
Plaintext
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
|
"listeners/test/browser/browser.toml",
|
|
"messagehandler/test/browser/broadcast/browser.toml",
|
|
"messagehandler/test/browser/browser.toml",
|
|
"messagehandler/test/browser/browser_retry_fallback.toml",
|
|
"messagehandler/test/browser/webdriver/browser.toml",
|
|
"test/browser/browser.toml",
|
|
]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
"messagehandler/test/xpcshell/xpcshell.toml",
|
|
"test/xpcshell/xpcshell.toml",
|
|
"webdriver/test/xpcshell/xpcshell.toml",
|
|
]
|