mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
e8f04be3ae
`BorderRadiusStyleValue::absolutized` should not try to extract length from LengthPercentage that represents calculated.
20 lines
381 B
HTML
20 lines
381 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="match" href="reference/calc-border-radius-ref.html" />
|
|
<style>
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: lightblue;
|
|
border-radius: calc(2 * 10px);
|
|
border: 2px solid black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="box"></div>
|
|
|
|
</body>
|
|
</html>
|