mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 08:18:54 +02:00 
			
		
		
		
	 888f2eec3d
			
		
	
	
		888f2eec3d
		
	
	
	
	
		
			
			This also exposes this via XPCOM. This will be used by WebDriver and Dev Tools. Differential Revision: https://phabricator.services.mozilla.com/D175583
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			615 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			615 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* 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/. */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| // Load the shared-head file first.
 | |
| Services.scriptloader.loadSubScript(
 | |
|   "chrome://mochitests/content/browser/accessible/tests/browser/shared-head.js",
 | |
|   this
 | |
| );
 | |
| 
 | |
| // Loading and common.js from accessible/tests/mochitest/ for all tests, as
 | |
| // well as promisified-events.js.
 | |
| loadScripts(
 | |
|   { name: "common.js", dir: MOCHITESTS_DIR },
 | |
|   { name: "promisified-events.js", dir: MOCHITESTS_DIR }
 | |
| );
 |