LibWeb: Correct CSS initial values for min-width and min-height

The initial value for these is auto, not 0.
This commit is contained in:
Andreas Kling 2021-08-26 12:14:48 +02:00
parent cf8f1c5a5f
commit 243e9a8b4a
Notes: sideshowbarker 2024-07-18 05:16:43 +09:00

View file

@ -346,11 +346,11 @@
},
"min-height": {
"inherited": false,
"initial": "0"
"initial": "auto"
},
"min-width": {
"inherited": false,
"initial": "0"
"initial": "auto"
},
"opacity": {
"inherited": false,