mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 23:56:06 +00:00
LibWeb/CSS: Add custom-ident blacklists to Properties.json
These excluded values use a similar notation to the ranges for numeric types: `![foo,bar,baz]` to exclude `foo`, `bar`, and `baz`.
This commit is contained in:
parent
c6c607884b
commit
c729c3fcee
Notes:
github-actions[bot]
2025-02-26 11:24:14 +00:00
Author: https://github.com/AtkinsSJ
Commit: c729c3fcee
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3684
Reviewed-by: https://github.com/trflynn89
3 changed files with 64 additions and 7 deletions
|
@ -247,7 +247,7 @@
|
|||
"initial": "none",
|
||||
"valid-types": [
|
||||
"string",
|
||||
"custom-ident"
|
||||
"custom-ident ![none]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"none"
|
||||
|
@ -880,7 +880,15 @@
|
|||
"affects-layout": false,
|
||||
"animation-type": "discrete",
|
||||
"inherited": true,
|
||||
"initial": "normal"
|
||||
"initial": "normal",
|
||||
"valid-types": [
|
||||
"custom-ident ![normal,light,dark,only]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"normal",
|
||||
"light",
|
||||
"dark"
|
||||
]
|
||||
},
|
||||
"column-count": {
|
||||
"animation-type": "by-computed-value",
|
||||
|
@ -975,7 +983,7 @@
|
|||
"inherited": false,
|
||||
"initial": "none",
|
||||
"valid-types": [
|
||||
"custom-ident",
|
||||
"custom-ident ![none]",
|
||||
"integer [-∞,∞]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
|
@ -987,7 +995,7 @@
|
|||
"inherited": false,
|
||||
"initial": "none",
|
||||
"valid-types": [
|
||||
"custom-ident",
|
||||
"custom-ident ![none]",
|
||||
"integer [-∞,∞]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
|
@ -999,7 +1007,7 @@
|
|||
"inherited": false,
|
||||
"initial": "none",
|
||||
"valid-types": [
|
||||
"custom-ident",
|
||||
"custom-ident ![none]",
|
||||
"integer [-∞,∞]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
|
@ -2841,7 +2849,7 @@
|
|||
"initial": "all",
|
||||
"valid-types": [
|
||||
"string",
|
||||
"custom-ident"
|
||||
"custom-ident ![all,none]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"all",
|
||||
|
@ -2902,7 +2910,7 @@
|
|||
"inherited": false,
|
||||
"initial": "none",
|
||||
"valid-types": [
|
||||
"custom-ident"
|
||||
"custom-ident ![auto,none]"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"none"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue