1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +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 @@
<!-- This page is intentionally left blank. -->

View file

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

View file

@ -16,5 +16,6 @@
"square-flex.html": "square-ref.html",
"svg-gradient-spreadMethod.html": "svg-gradient-spreadMethod-ref.html",
"svg-radialGradient.html": "svg-radialGradient-ref.html",
"svg-symbol.html": "svg-symbol-ref.html"
"svg-symbol.html": "svg-symbol-ref.html",
"border-radius-shrink-zero-sized-box.html": "border-radius-shrink-zero-sized-box-ref.html"
}