Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 4 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-shapes/shape-functions/polygon-function-round-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Shapes Module Level 1: parsing the polygon() function with the round modifier</title>
<meta name="assert" content="Tests computed value of the round modifier in the polygon() function">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
</head>
<body>
<div id="target"></div>
<script>
test_computed_value(
"shape-outside",
"polygon(round 1em, 1px 2px, 3em 4em)",
"polygon(round 16px, 1px 2px, 48px 64px)");
test_computed_value(
"shape-outside",
"polygon(evenodd round 6pt, 1px 2px, 3em 4em, 6pt 6%)",
"polygon(evenodd round 8px, 1px 2px, 48px 64px, 8px 6%)");
test_computed_value(
"shape-outside",
"polygon(round 0px, 1px 2px, 3px 4px)",
"polygon(1px 2px, 3px 4px)");
test_computed_value(
"shape-outside",
"polygon(round calc(1em + 2px), 1px 2px, 3px 4px)",
"polygon(round 18px, 1px 2px, 3px 4px)");
</script>
</body>
</html>