Files
ladybird/Tests/LibWeb/Ref/input/css/border-radius-slash-syntax.html
Sam Atkins 38b02c79ad LibWeb/CSS: Allow a slash in border-radius longhand properties
`border-radius` requires a slash between the x/y components, but the
longhands like `border-top-left-radius` don't allow it. This spec
change allows authors to put a slash there for consistency.

Corresponds to:
e938d7d705
2025-12-15 14:30:20 +00:00

12 lines
283 B
HTML

<!DOCTYPE html>
<link rel="match" href="../../expected/css/border-radius-slash-syntax-ref.html" />
<style>
#target {
width: 100px;
height: 100px;
background-color: black;
border-top-left-radius: 20px / 40px;
}
</style>
<div id="target"></div>