<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Borders and Box Decorations 4 Test: 'corner-shape: angle 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-round-bottom-left-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 'angle angle angle round' is supported for 'corner-shape'.">
<style>
#test {
width: 100px;
height: 100px;
border: 10px solid black;
border-radius: 40px;
corner-shape: angle angle angle round;
}
</style>
<p>Test passes if the square has a rounded bottom-left corner and the others are beveled.
<div id="test"></div>