mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
`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
12 lines
283 B
HTML
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>
|