mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:02:46 +00:00 
			
		
		
		
	 ec081a2ef5
			
		
	
	
		ec081a2ef5
		
	
	
	
	
		
			
			If you can believe it, we were once again using StringBuilder's append() when we really wanted append_code_point().
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			220 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			220 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div id=test></div>
 | |
| <script src="../include.js"></script>
 | |
| <script>
 | |
|     test(() => {
 | |
|         const formData = new FormData();
 | |
|         formData.append("🧐", "");
 | |
|         println("PASS (Didn't crash)");
 | |
|     });
 | |
| </script>
 |