mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
3e1c1c0b16
Currently only "auto" and "pixelated" values are supported.
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>
|