mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:17:34 +00:00
LibWeb: Add deprecated image-rendering
values
From the spec: > This property previously accepted the values optimizeSpeed and optimizeQuality. These are now deprecated; a user agent must accept them as valid values but must treat them as having the same behavior as pixelated and smooth respectively, and authors must not use them. - https://www.w3.org/TR/css-images-3/#the-image-rendering
This commit is contained in:
parent
1b4ab8626b
commit
c4ef4fcd72
2 changed files with 5 additions and 1 deletions
|
@ -89,7 +89,9 @@
|
||||||
"crisp-edges",
|
"crisp-edges",
|
||||||
"high-quality",
|
"high-quality",
|
||||||
"pixelated",
|
"pixelated",
|
||||||
"smooth"
|
"smooth",
|
||||||
|
"optimizespeed=pixelated",
|
||||||
|
"optimizequality=smooth"
|
||||||
],
|
],
|
||||||
"justify-content": [
|
"justify-content": [
|
||||||
"flex-start",
|
"flex-start",
|
||||||
|
|
|
@ -181,6 +181,8 @@
|
||||||
"nwse-resize",
|
"nwse-resize",
|
||||||
"oblique",
|
"oblique",
|
||||||
"opaque",
|
"opaque",
|
||||||
|
"optimizespeed",
|
||||||
|
"optimizequality",
|
||||||
"outset",
|
"outset",
|
||||||
"outside",
|
"outside",
|
||||||
"overline",
|
"overline",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue