summaryrefslogtreecommitdiffstats
path: root/testing/specialpowers/content/AppTestDelegateChild.sys.mjs
blob: 1d78d41f5d5828bc69315afb061d456f37c2f93c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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/. */

export class AppTestDelegateChild extends JSWindowActorChild {
  handleEvent(event) {
    switch (event.type) {
      case "DOMContentLoaded":
      case "load": {
        this.sendAsyncMessage(event.type, {
          internalURL: event.target.documentURI,
          visibleURL: event.target.location?.href,
        });
        break;
      }
    }
  }
}