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-computed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>getComputedStyle().textFit</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<body>
<div id="target" style="font-size:20px; line-height:1;"></div>
<script>
test_computed_value('text-fit', 'none');
test_computed_value('text-fit', 'grow');
test_computed_value('text-fit', 'shrink');
test_computed_value('text-fit', 'grow consistent', 'grow');
test_computed_value('text-fit', 'grow per-line');
test_computed_value('text-fit', 'grow per-line-all');
test_computed_value('text-fit', 'grow per-line 200%');
test_computed_value('text-fit', 'grow consistent 300%', 'grow 300%');
test_computed_value('text-fit', 'shrink per-line 40%', 'shrink per-line 40%');
test_computed_value('text-fit', 'shrink consistent 20%', 'shrink 20%');
</script>
</body>