1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 10:35:06 +00:00
serenity/Tests/LibWeb/Text/expected/css/media-query-serialization-basic.txt
Andreas Kling b63e393cef LibWeb: Fix broken conversion of CSS <resolution> dpi/dpcm to dppx
Also add a basic test that documents how these media features currently
get serialized, even if they're not identical to other browsers yet.
2023-08-25 20:10:47 +02:00

15 lines
223 B
Text

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