1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 18:04:59 +00:00
serenity/Tests/LibWeb/Ref/reference/calc-border-radius-ref.html
Aliaksandr Kalenik e8f04be3ae LibWeb/CSS: Fix crashing when calc() is used for border-radius
`BorderRadiusStyleValue::absolutized` should not try to extract length
from LengthPercentage that represents calculated.
2024-01-01 10:12:20 +01:00

19 lines
301 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 200px;
height: 200px;
background-color: lightblue;
border-radius: 20px;
border: 2px solid black;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>