blob: 9e0b09caac3eb5eaa38d8c29bf2306e417a2b4c9 (
plain)
1
2
3
4
5
6
7
8
9
|
<!doctype html>
<title>Invalid calc() expressions</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../support/parsing-testcommon.js"></script>
<link rel="help" href="https://drafts.csswg.org/css-values-4/#calc-syntax">
<script>
test_invalid_value('transform', 'rotate(calc((0.25turn error)))');
</script>
|