mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 11:37:16 +02:00
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:
committed by
Andreas Kling
parent
398ae75f9a
commit
a2cccf9420
Notes:
sideshowbarker
2024-07-17 21:11:12 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/a2cccf9420 Pull-request: https://github.com/SerenityOS/serenity/pull/24162
@@ -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) {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user