forked from mirrors/gecko-dev
		
	# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35962 --HG-- extra : source : c0948f31e520ca087279cf429ca5f1db5a8341b8
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			305 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			305 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* Any copyright is dedicated to the Public Domain.
 | 
						|
 * http://creativecommons.org/publicdomain/zero/1.0/ */
 | 
						|
 | 
						|
/* import-globals-from ../../head.js */
 | 
						|
 | 
						|
function run_test() {
 | 
						|
  do_check_throws_nsIException(function() {
 | 
						|
    throw Error("I find your relaxed dishabille unpalatable");
 | 
						|
  }, "NS_NOINTERFACE");
 | 
						|
}
 |