mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			556 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			556 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html class="reftest-wait">
 | 
						|
  <!-- Test: Change an input element from required type
 | 
						|
             to a non-required type. -->
 | 
						|
  <link rel='stylesheet' type='text/css' href='css-required-style.css'>
 | 
						|
 | 
						|
  <script type="text/javascript">
 | 
						|
    function changeType()
 | 
						|
    {
 | 
						|
      document.getElementById('i').type = 'submit';
 | 
						|
    }
 | 
						|
    function disableReftestWait()
 | 
						|
    {
 | 
						|
      document.documentElement.className = '';
 | 
						|
    }
 | 
						|
  </script>
 | 
						|
 | 
						|
  <body onload="changeType(); disableReftestWait();">
 | 
						|
    <input type="text" id="i" required>
 | 
						|
  </body>
 | 
						|
</html>
 |