Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 2 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/calc-size/interpolate-size-parsing.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<title>The interpolate-size property: parsing</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('interpolate-size', 'numeric-only');
test_valid_value('interpolate-size', 'allow-keywords');
test_invalid_value('interpolate-size', 'auto');
test_invalid_value('interpolate-size', 'none');
test_invalid_value('interpolate-size', '100%');
</script>