LibWeb: Use correct spacing when serializing media features

Previously, there was no space between the media feature name and value.
This commit is contained in:
Tim Ledbetter
2024-04-17 07:48:30 +01:00
committed by Andreas Kling
parent 398ae75f9a
commit a2cccf9420
Notes: sideshowbarker 2024-07-17 21:11:12 +09:00
2 changed files with 7 additions and 7 deletions

View File

@@ -1,15 +1,15 @@
@media screen {
}
@media screen and ((min-width:20px) and (max-width:40px)) {
@media screen and ((min-width: 20px) and (max-width: 40px)) {
}
@media screen and (min-resolution:1dppx) {
@media screen and (min-resolution: 1dppx) {
}
@media screen and (min-resolution:2dppx) {
@media screen and (min-resolution: 2dppx) {
}
@media screen and (min-resolution:2.54dppx) {
@media screen and (min-resolution: 2.54dppx) {
}