Bug 1686820 [wpt PR 27193] - Origin-keyed agent clusters: make COI imply origin-keyin...
[gecko.git] / docshell / test / browser / Bug1622420Child.jsm
blob69a8f88e09766e178db40e7927798acc07c272ed
1 var EXPORTED_SYMBOLS = ["Bug1622420Child"];
3 class Bug1622420Child extends JSWindowActorChild {
4   receiveMessage(msg) {
5     switch (msg.name) {
6       case "hasWindowContextForTopBC":
7         return !!this.browsingContext.top.currentWindowContext;
8     }
9     return null;
10   }