forked from mirrors/gecko-dev
		
	Differential Revision: https://phabricator.services.mozilla.com/D38010 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			686 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			686 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE HTML>
 | 
						|
<html class="reftest-wait">
 | 
						|
<head>
 | 
						|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
 | 
						|
<script src="/tests/SimpleTest/EventUtils.js"></script>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<input type="password">
 | 
						|
<script>
 | 
						|
  function runTest() {
 | 
						|
    let hash = window.location.hash;
 | 
						|
    let input = document.getElementsByTagName("input")[0];
 | 
						|
    input.focus();
 | 
						|
    synthesizeKey("a");
 | 
						|
    synthesizeKey("b");
 | 
						|
    switch (hash) {
 | 
						|
      case "#arabic":
 | 
						|
        synthesizeKey("\u0634");
 | 
						|
        break;
 | 
						|
      case "#hebrew":
 | 
						|
        synthesizeKey("\u05D3");
 | 
						|
        break;
 | 
						|
    }
 | 
						|
    document.documentElement.removeAttribute("class");
 | 
						|
  }
 | 
						|
 | 
						|
  SimpleTest.waitForFocus(runTest);
 | 
						|
</script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 |