Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 6 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-borders/tentative/parsing/border-shape-valid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Borders and Box Decorations 4 Test: Parsing 'border-shape' with valid values</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
test_valid_value("border-shape", "none");
test_valid_value("border-shape", "circle()");
test_valid_value("border-shape", "polygon(10px 10px, 100px 10px, 10px 100px)");
test_valid_value("border-shape", "shape(from 0px 0px, hline to 100px, vline to 100px, close)");
test_valid_value("border-shape", "circle() circle()", "circle()");
test_valid_value("border-shape", "circle() polygon(10px 10px, 100px 10px, 10px 100px)");
</script>