forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			594 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			594 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| let gTestTab;
 | |
| let gContentAPI;
 | |
| let gContentWindow;
 | |
| 
 | |
| Components.utils.import("resource:///modules/UITour.jsm");
 | |
| 
 | |
| function test() {
 | |
|   UITourTest();
 | |
| }
 | |
| 
 | |
| let tests = [
 | |
|   taskify(function*() {
 | |
|     ok(!gBrowser.selectedBrowser.currentURI.spec.startsWith("about:reader"), "Should not be in reader mode at start of test.");
 | |
|     gContentAPI.toggleReaderMode();
 | |
|     yield waitForConditionPromise(() => gBrowser.selectedBrowser.currentURI.spec.startsWith("about:reader"));
 | |
|     ok(gBrowser.selectedBrowser.currentURI.spec.startsWith("about:reader"), "Should be in reader mode now.");
 | |
|   })
 | |
| ];
 | 
