TestRegistrant1.sys.mjs (511B)
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 TestRegistrant1 extends BaseAboutNewTabComponentRegistrant { 8 getComponents() { 9 return [ 10 { 11 type: "SEARCH", 12 componentURL: "chrome://test/content/component.mjs", 13 tagName: "test-component", 14 l10nURLs: [], 15 }, 16 ]; 17 } 18 }