Status: FAIL | Duration: 8ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-borders/corner-shape/corner-shape-square.html
<!DOCTYPE html> <head> <title>CSS Borders and Box Decorations 4: 'corner-shape: square'</title> <link rel="help" href="https://drafts.csswg.org/css-borders-4/#corner-shaping"> <link rel="match" href="corner-shape-square-ref.html"> <meta name="fuzzy" content="maxDifference=0-60;totalPixels=0-80"> <style> .target { background: green; width: 100px; height: 100px; border-radius: 25px; border: 10px solid black; box-sizing: border-box; corner-shape: square superellipse(24) round square; } </style> <div class=target></div>
/css/css-borders/corner-shape/corner-shape-square-ref.html
<!DOCTYPE html> <head> <style> .target { background: green; width: 100px; height: 100px; border-bottom-right-radius: 25px; border: 10px solid black; box-sizing: border-box; } </style> </head> <body> <div class=target></div> </body>