mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 09:49:21 +00:00
LibWeb: Correct initial values in Properties.json
- `align-items`: `normal` is the initial value in the CSS-ALIGN spec, but `stretch` is in CSS-FLEXBOX. The FLEXBOX spec is the one we've actually implemented elsewhere, and ALIGN adds new values with special syntax, so it's not trivial to add it here. - `border-spacing`: `0` is equivalent to `0px 0px` and we don't yet parse the double-value syntax. - `text-decoration-thickness`: Had the wrong value.
This commit is contained in:
parent
a445deb205
commit
1fa985b0a6
Notes:
sideshowbarker
2024-07-18 01:18:41 +09:00
Author: https://github.com/AtkinsSJ
Commit: 1fa985b0a6
Pull-request: https://github.com/SerenityOS/serenity/pull/10862
Reviewed-by: https://github.com/awesomekling
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"align-items": {
|
"align-items": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": "normal",
|
"initial": "stretch",
|
||||||
"valid-identifiers": [
|
"valid-identifiers": [
|
||||||
"center",
|
"center",
|
||||||
"baseline",
|
"baseline",
|
||||||
|
@ -314,7 +314,7 @@
|
||||||
},
|
},
|
||||||
"border-spacing": {
|
"border-spacing": {
|
||||||
"inherited": true,
|
"inherited": true,
|
||||||
"initial": "0px 0px",
|
"initial": "0",
|
||||||
"quirks": [
|
"quirks": [
|
||||||
"unitless-length"
|
"unitless-length"
|
||||||
]
|
]
|
||||||
|
@ -1195,7 +1195,7 @@
|
||||||
},
|
},
|
||||||
"text-decoration-thickness": {
|
"text-decoration-thickness": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": "none",
|
"initial": "auto",
|
||||||
"valid-types": [
|
"valid-types": [
|
||||||
"length",
|
"length",
|
||||||
"percentage"
|
"percentage"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue