mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 18:47:15 +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
11 lines
198 B
HTML
11 lines
198 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: black;
|
|
border-top-left-radius: 20px 40px;
|
|
}
|
|
</style>
|
|
<div id="target"></div>
|