Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 10 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/parsing/text-fit-valid.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Parsing text-fit with valid values</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<body>
<script>
test_valid_value('text-fit', 'none');
test_valid_value('text-fit', 'grow');
test_valid_value('text-fit', 'shrink');
test_valid_value('text-fit', 'grow consistent', 'grow consistent');
test_valid_value('text-fit', 'grow per-line');
test_valid_value('text-fit', 'grow per-line-all');
test_valid_value('text-fit', 'grow per-line 132%');
test_valid_value('text-fit', 'grow consistent 300%');
test_valid_value('text-fit', 'shrink per-line 4%');
test_valid_value('text-fit', 'shrink consistent 50%');
</script>
</body>