<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Borders and Box Decorations 4 Test: 'corner-shape: round angle angle round'</title>
<link rel="author" title="Sebastian Zartner" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-borders-4/#corner-shaping">
<link rel="match" href="../../reference/corner-shape-angle-right-001-ref.html">
<!-- TODO Test needs some fuzziness via <meta name="fuzzy">, though values for maxDifference and totalPixels are still unclear -->
<meta name="assert" content="This test checks that 'round angle angle round' is supported for 'corner-shape'.">
<style>
#test {
width: 100px;
height: 100px;
border: 10px solid black;
border-radius: 40px;
corner-shape: round angle angle round;
}
</style>
<p>Test passes if the square has beveled top-right and bottom-right corners and rounded top-left and bottom-left corners.
<div id="test"></div>