blob: c238ddfb96971e7dfa227cb0a2ba9985ff0552c0 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Borders and Box Decorations 4 Test: Computed values of 'corner-shape'</title>
<link rel="author" title="Sebastian Zartner" href="mailto:sebastianzartner@gmail.com">
<link rel="help" href="https://drafts.csswg.org/css-borders-4/#corner-shaping">
<meta name="assert" content="This test checks that the computed value of 'corner-shape' is correct.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="target"></div>
<script>
test_computed_value("corner-shape", "round");
test_computed_value("corner-shape", "angle");
test_computed_value("corner-shape", "round angle");
test_computed_value("corner-shape", "round angle round");
test_computed_value("corner-shape", "round angle round angle");
</script>