mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
9 lines
383 B
HTML
9 lines
383 B
HTML
<!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>
|