forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D68572 --HG-- extra : moz-landing-system : lando
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
var EXPORTED_SYMBOLS = ["Bug1622420Child"];
|
|
|
|
class Bug1622420Child extends JSWindowActorChild {
|
|
receiveMessage(msg) {
|
|
switch (msg.name) {
|
|
case "hasWindowContextForTopBC":
|
|
return !!this.browsingContext.top.currentWindowContext;
|
|
}
|
|
return null;
|
|
}
|
|
}
|