mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			563 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			563 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>image-rendering property</title>
 | |
| </head>
 | |
| <body>
 | |
|     <h1>image-rendering property</h1>
 | |
|     <p>This image should be blurred:</p>
 | |
|     <img style="width: 256px" src="file:///res/graphics/buggie.png">
 | |
|     <p>This image should be blurred:</p>
 | |
|     <img style="image-rendering: auto; width: 256px" src="file:///res/graphics/buggie.png">
 | |
|     <p>This image should be pixelated:</p>
 | |
|     <img style="image-rendering: pixelated; width: 256px" src="file:///res/graphics/buggie.png">
 | |
| </body>
 | |
| </html>
 | 
