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

Tests/LibWeb: Add ref test for border-radius shrink of zero sized box

This commit is contained in:
MacDue 2023-08-25 01:02:02 +01:00 committed by Alexander Kalenik
parent 2876e2f58e
commit e8342a5b79
3 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,10 @@
<style>
#test {
background-color: red;
border-radius: 10px;
width: 0px;
height: 0px;
}
</style>
<div id="test">
</div>