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

LibWeb: Make resolved serialization of CSS display prefer short form

Although we translate e.g `block` to `block flow` for internal use in
the engine, CSS-DISPLAY-3 tells us to use the short form in
serializations for compatibility reasons.

This adds 9 points to our score on https://html5test.com/ :^)
This commit is contained in:
Andreas Kling 2023-05-27 13:19:49 +02:00
parent 8defd55349
commit a98f5c7251
4 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,14 @@
none => none
block => block
flow-root => flow-root
inline => inline
inline-block => inline-block
run-in => run-in
list-item => list-item
flex => flex
inline-flex => inline-flex
grid => grid
inline-grid => inline-grid
ruby => ruby
table => table
inline-table => inline-table