mirror of
https://github.com/servo/servo.git
synced 2025-06-19 06:38:59 +01:00
Conforming to section 5.5 (Rounded Corners/Overlapping Curves) of "CSS Background and Borders Module Level 3", border radii on elements whose border curves would have overlapped are uniformly scaled down to the point that they no longer do. http://dev.w3.org/csswg/css-backgrounds/#corner-overlap
6 lines
183 B
HTML
6 lines
183 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div style='box-sizing:border-box; width:6em; height:2em; border-radius:.5em 2em .5em 2em; background-color:red;'></div>
|
|
</body>
|
|
</html>
|