forked from mirrors/gecko-dev
		
	 bcdc3a9567
			
		
	
	
		bcdc3a9567
		
	
	
	
	
		
			
			# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35900 --HG-- extra : source : b08f475f1140b9e650b316ee2813c13ec9947678
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			868 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			868 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var rootDir = "http://mochi.test:8888/browser/docshell/test/browser/";
 | |
| 
 | |
| function test() {
 | |
|   waitForExplicitFinish();
 | |
| 
 | |
|   gBrowser.selectedTab = BrowserTestUtils.addTab(
 | |
|     gBrowser,
 | |
|     rootDir + "file_bug852909.png"
 | |
|   );
 | |
|   BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(image);
 | |
| }
 | |
| 
 | |
| function image(event) {
 | |
|   ok(
 | |
|     !gBrowser.selectedTab.mayEnableCharacterEncodingMenu,
 | |
|     "Docshell should say the menu should be disabled for images."
 | |
|   );
 | |
| 
 | |
|   gBrowser.removeCurrentTab();
 | |
|   gBrowser.selectedTab = BrowserTestUtils.addTab(
 | |
|     gBrowser,
 | |
|     rootDir + "file_bug852909.pdf"
 | |
|   );
 | |
|   BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(pdf);
 | |
| }
 | |
| 
 | |
| function pdf(event) {
 | |
|   ok(
 | |
|     !gBrowser.selectedTab.mayEnableCharacterEncodingMenu,
 | |
|     "Docshell should say the menu should be disabled for PDF.js."
 | |
|   );
 | |
| 
 | |
|   gBrowser.removeCurrentTab();
 | |
|   finish();
 | |
| }
 |