Bug 1735741 [wpt PR 31230] - Add more <dialog> focus-related tests, a=testonly
[gecko.git] / remote / cdp / domains / ContentProcessDomains.jsm
blob76710eed95cf2c8148fc4558dd62ecccc88fb819
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 var EXPORTED_SYMBOLS = ["ContentProcessDomains"];
9 const { XPCOMUtils } = ChromeUtils.import(
10   "resource://gre/modules/XPCOMUtils.jsm"
13 const ContentProcessDomains = {};
15 XPCOMUtils.defineLazyModuleGetters(ContentProcessDomains, {
16   DOM: "chrome://remote/content/cdp/domains/content/DOM.jsm",
17   Emulation: "chrome://remote/content/cdp/domains/content/Emulation.jsm",
18   Input: "chrome://remote/content/cdp/domains/content/Input.jsm",
19   Log: "chrome://remote/content/cdp/domains/content/Log.jsm",
20   Network: "chrome://remote/content/cdp/domains/content/Network.jsm",
21   Page: "chrome://remote/content/cdp/domains/content/Page.jsm",
22   Performance: "chrome://remote/content/cdp/domains/content/Performance.jsm",
23   Runtime: "chrome://remote/content/cdp/domains/content/Runtime.jsm",
24   Security: "chrome://remote/content/cdp/domains/content/Security.jsm",
25 });