forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D47826 --HG-- extra : moz-landing-system : lando
23 lines
804 B
JavaScript
23 lines
804 B
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* 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/. */
|
|
|
|
/* This content script should work in any browser or iframe and should not
|
|
* depend on the frame being contained in tabbrowser. */
|
|
|
|
/* eslint-env mozilla/frame-script */
|
|
/* eslint no-unused-vars: ["error", {args: "none"}] */
|
|
|
|
var { XPCOMUtils } = ChromeUtils.import(
|
|
"resource://gre/modules/XPCOMUtils.jsm"
|
|
);
|
|
|
|
XPCOMUtils.defineLazyModuleGetters(this, {
|
|
ContentMetaHandler: "resource:///modules/ContentMetaHandler.jsm",
|
|
});
|
|
|
|
ContentMetaHandler.init(this);
|
|
|
|
// This is a temporary hack to prevent regressions (bug 1471327).
|
|
void content;
|