calc-invalid-parsing.html (627B)
1 <!doctype html> 2 <title>Invalid calc() expressions</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <script src="../support/parsing-testcommon.js"></script> 6 <link rel="help" href="https://drafts.csswg.org/css-values-4/#calc-syntax"> 7 <script> 8 test_invalid_value('transform', 'rotate(calc((0.25turn error)))'); 9 test_invalid_value('width', 'calc(7px * up)'); 10 test_invalid_value('width', 'round(nearest, 1px, 1px, 1px)'); 11 test_invalid_value('width', 'round(nearest, 1px)'); 12 test_invalid_value('width', 'calc([])'); 13 test_invalid_value('width', 'calc( [])'); 14 </script>