forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			677 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			677 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* Any copyright is dedicated to the Public Domain.
 | 
						|
   http://creativecommons.org/publicdomain/zero/1.0/ */
 | 
						|
 | 
						|
"use strict";
 | 
						|
 | 
						|
XPCOMUtils.defineLazyModuleGetters(this, {
 | 
						|
  PromptTestUtils: "resource://testing-common/PromptTestUtils.jsm",
 | 
						|
});
 | 
						|
 | 
						|
XPCOMUtils.defineLazyGetter(this, "UrlbarTestUtils", () => {
 | 
						|
  const { UrlbarTestUtils: module } = ChromeUtils.import(
 | 
						|
    "resource://testing-common/UrlbarTestUtils.jsm"
 | 
						|
  );
 | 
						|
  module.init(this);
 | 
						|
  return module;
 | 
						|
});
 | 
						|
 | 
						|
XPCOMUtils.defineLazyGetter(this, "SearchTestUtils", () => {
 | 
						|
  const { SearchTestUtils: module } = ChromeUtils.import(
 | 
						|
    "resource://testing-common/SearchTestUtils.jsm"
 | 
						|
  );
 | 
						|
  module.init(this);
 | 
						|
  return module;
 | 
						|
});
 |