1 /* vim: set ts=2 sw=2 sts=2 et tw=80: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 export class BrowserElementChild extends JSWindowActorChild {
9 event.type == "DOMWindowClose" &&
10 !this.manager.browsingContext.parent
12 this.sendAsyncMessage("DOMWindowClose", {});
16 receiveMessage(message) {
17 switch (message.name) {
18 case "EnterModalState": {
19 this.contentWindow.windowUtils.enterModalState();
23 case "LeaveModalState": {
25 !message.data.forceLeave &&
26 !this.contentWindow.windowUtils.isInModalState()
30 this.contentWindow.windowUtils.leaveModalState();