tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

TestRegistrant2.sys.mjs (513B)


      1 /* Any copyright is dedicated to the Public Domain.
      2 * http://creativecommons.org/publicdomain/zero/1.0/
      3 */
      4 
      5 import { BaseAboutNewTabComponentRegistrant } from "moz-src:///browser/components/newtab/AboutNewTabComponents.sys.mjs";
      6 
      7 export class TestRegistrant2 extends BaseAboutNewTabComponentRegistrant {
      8  getComponents() {
      9    return [
     10      {
     11        type: "OTHER",
     12        componentURL: "chrome://test/content/component2.mjs",
     13        tagName: "test-component-2",
     14        l10nURLs: [],
     15      },
     16    ];
     17  }
     18 }