1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:57:35 +00:00

LibWeb: Mark the border-style properties as layout affecting

`border-style: none` and `border-style: hidden` remove the border
entirely during layout, causing boxes to shift around.
This commit is contained in:
Luke Wilde 2022-12-31 16:54:39 +00:00 committed by Andreas Kling
parent 7bd6a5b868
commit 42b011b571

View file

@ -225,7 +225,6 @@
] ]
}, },
"border-bottom-style": { "border-bottom-style": {
"affects-layout": false,
"initial": "none", "initial": "none",
"inherited": false, "inherited": false,
"valid-types": [ "valid-types": [
@ -284,7 +283,6 @@
] ]
}, },
"border-left-style": { "border-left-style": {
"affects-layout": false,
"initial": "none", "initial": "none",
"inherited": false, "inherited": false,
"valid-types": [ "valid-types": [
@ -329,7 +327,6 @@
] ]
}, },
"border-right-style": { "border-right-style": {
"affects-layout": false,
"initial": "none", "initial": "none",
"inherited": false, "inherited": false,
"valid-types": [ "valid-types": [
@ -359,7 +356,6 @@
] ]
}, },
"border-style": { "border-style": {
"affects-layout": false,
"initial": "none", "initial": "none",
"longhands": [ "longhands": [
"border-top-style", "border-top-style",
@ -401,7 +397,6 @@
] ]
}, },
"border-top-style": { "border-top-style": {
"affects-layout": false,
"initial": "none", "initial": "none",
"inherited": false, "inherited": false,
"valid-types": [ "valid-types": [