1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:47:45 +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:
Sam Atkins 2022-03-22 14:12:44 +00:00 committed by Andreas Kling
parent 701d437205
commit ca1b855d99

View file

@ -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"