mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
LibWeb: Allow percentages in word/letter-spacing properties
This is a change to CSS-TEXT-4, listed here: https://www.w3.org/TR/2022/WD-css-text-4-20220318/#changes We don't actually support these properties yet, but it doesn't hurt to keep them up to date for when they get implemented in the future. :^)
This commit is contained in:
parent
701d437205
commit
ca1b855d99
1 changed files with 4 additions and 2 deletions
|
@ -829,7 +829,8 @@
|
|||
"inherited": true,
|
||||
"initial": "normal",
|
||||
"valid-types": [
|
||||
"length"
|
||||
"length",
|
||||
"percentage"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"normal"
|
||||
|
@ -1459,7 +1460,8 @@
|
|||
"inherited": true,
|
||||
"initial": "normal",
|
||||
"valid-types": [
|
||||
"length"
|
||||
"length",
|
||||
"percentage"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"normal"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue