mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 14:57:35 +00:00
LibWeb: Support more CSS image-rendering values
This patch adds support for "crisp-edges", "high-quality" and "smooth" for the CSS image-rendering property. "crisp-edges" maps to nearest-neighbor scaling for <canvas> and <img> elements, while "high-quality" and "smooth" both use bilinear blending.
This commit is contained in:
parent
fe52ee2f8e
commit
6d1a9672a4
7 changed files with 42 additions and 9 deletions
|
@ -765,7 +765,10 @@
|
|||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto",
|
||||
"pixelated"
|
||||
"crisp-edges",
|
||||
"high-quality",
|
||||
"pixelated",
|
||||
"smooth"
|
||||
]
|
||||
},
|
||||
"justify-content": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue