mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			314 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			314 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <script src="../include.js"></script>
 | |
| <script>
 | |
|     test(() => {
 | |
|         var button = document.createElement('button');
 | |
|         println(button.type);
 | |
|         button.setAttribute("type", "button");
 | |
|         println(button.type);
 | |
|         button.removeAttribute("type");
 | |
|         println(button.type);
 | |
|     });
 | |
| </script>
 | 
