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

LibWeb: Parse multiple box-shadows :^)

Again, we don't yet render these (we render nothing) but this gets rid
of a decent amount of CSS spam on Discord.
This commit is contained in:
Sam Atkins 2022-02-08 14:07:06 +00:00 committed by Andreas Kling
parent e5b0369dfd
commit b51f428165
3 changed files with 46 additions and 21 deletions

View file

@ -37,5 +37,9 @@
<p>box-shadow: 20px 10px 5px magenta</p>
</div>
<div class="box" style="box-shadow: 20px 10px 5px magenta, cyan -20px -10px 5px, yellow 10px -5px 5px 20px">
<p>box-shadow: 20px 10px 5px magenta, cyan -20px -10px 5px, yellow 10px -5px 5px 20px</p>
</div>
</body>
</html>